293031323334353637
this.subshell = subshell; } @Override public Action createNewAction() { SubShellAction action = (SubShellAction) super.createNewAction(); action.setSubShell(subshell); return action; }
117118119120121122123124125126127
private static AbstractCommand createShellCommand() { return new AbstractCommand() { @Override public Action createNewAction() { SubShellAction subShell = new SubShellAction(); subShell.setSubShell(SCOPE); return subShell; } }; }
303132333435363738