Subversion Repositories pub

Compare Revisions

No changes between revisions

Ignore whitespace Rev 53 → Rev 56

/pluggablejs/trunk/src/net/outlyer/plugins/Shell.java
24,6 → 24,8
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
// $Id$
 
import java.io.File;
import net.outlyer.plugins.utils.*;
 
45,9 → 47,11
pe.exportGlobalObject("err", new Output(System.err));
pe.exportGlobalObject("hooks", new Hooks());
// Generally either UI or GUI should be used but not both
// since GUI falls-back to UI if appropriate
pe.exportGlobalObject("ui", new UI());
// since GUI falls-back to UI if appropriate (so the ui object
// will use the "best" implementation)
pe.exportGlobalObject("ui", new GUI());
pe.exportGlobalObject("gui", new GUI());
pe.exportGlobalObject("cui", new UI()); // cui stands for Console UI
final PluginObject po = new PluginObject();
pe.setPluginObject(po);
Property changes:
Added: svn:keywords
+Rev Id Date
\ No newline at end of property