414243444546474849
} @Override public void execute(Context context, ProcessedCommand commandLine) { CommandBuffer commandBuffer = new CommandBufferImpl(); commandBuffer.addCommand(getName(), nesting()); context.getConnection().execute(context, commandBuffer); } }
32333435363738394041
} @Override public void execute(Context context, ProcessedCommand commandLine) { CommandBuffer commandBuffer = context.getCommandBuffer(); if(commandBuffer.addCommand(commandLine.getCommandLine(), nesting())) { context.execute(); } } }
232425262728293031
} @Override public void execute(Context context, ProcessedCommand commandLine) { CommandBuffer commandBuffer = new CommandBufferImpl(); commandBuffer.addCommand(commandLine, nesting()); context.getConnection().execute(context, commandBuffer); } }
14151617181920212223
} @Override public void execute(Context context, ProcessedCommand commandLine) { CommandBuffer commandBuffer = context.getCommandBuffer(); if(commandBuffer.addCommand(commandLine, nesting())) { context.execute(); } } }