Console
43444546474849505152
return "hello"; } protected ExecutionContext getDefaultContext() { if (ctx == null) { ctx = new ExecutionContext(this); ctx.installCommand(new CmdHello()); } return ctx; }
5455565758596061626364
return "jash"; } protected ExecutionContext getDefaultContext() { if (ctx == null) { ctx = new ExecutionContext(this); ctx.installCommand(new CmdHello()); ctx.installCommand(new CmdConsole()); } return ctx; }