CmdShell
565758596061626364
protected ExecutionContext getDefaultContext() { if (ctx == null) { ctx = new ExecutionContext(this); ctx.installCommand(new CmdHello()); ctx.installCommand(new CmdConsole()); } return ctx; }
437438439440441442443444445
} protected ExecutionContext getDefaultContext() { if (ctxDefault == null) { ctxDefault = new VltExecutionContext(this); ctxDefault.installCommand(new CmdConsole()); } return ctxDefault; }