114115116117118119120
@Override public int doRun() throws ShellException { return ForCommandNode.this.execute(context); } }; return new CommandThreadImpl(cr, context.getName()); }
129130131132133134135
@Override public int doRun() throws ShellException { return IfCommandNode.this.execute(context); } }; return new CommandThreadImpl(cr, context.getName()); }
92939495969798
@Override public int doRun() throws ShellException { return CaseCommandNode.this.execute(context); } }; return new CommandThreadImpl(cr, context.getName()); }
122123124125126127128
@Override public int doRun() throws ShellException { return LoopCommandNode.this.execute(context); } }; return new CommandThreadImpl(cr, context.getName()); }
112113114115116117118
@Override public int doRun() throws ShellException { return ListCommandNode.this.execute(context); } }; return new CommandThreadImpl(cr, context.getName()); }
68697071727374
@Override public int doRun() throws ShellException { return FunctionDefinitionNode.this.execute(context); } }; return new CommandThreadImpl(cr, context.getName()); }
241242243244245246247
.currentThread().getThreadGroup(), properties, environment, streams); if (name == null) { name = procletContext.autoThreadName(); } return new CommandThreadImpl(procletContext, target, name, size); }