2728293031323334
return this; } public AeshCommandRegistryBuilder command(ProcessedCommand processedCommand, Class<? extends Command> command) { commandRegistry.addCommand(new AeshCommandContainer(processedCommand, command)); return this; }
3334353637383940
return this; } public AeshCommandRegistryBuilder command(ProcessedCommand processedCommand, Command command) { commandRegistry.addCommand(new AeshCommandContainer(processedCommand, command)); return this; }
3940414243444546
return this; } public AeshCommandRegistryBuilder command(CommandLineParser parser, Class<? extends Command> command) { commandRegistry.addCommand(new AeshCommandContainer(parser, command)); return this; }
4546474849505152
return this; } public AeshCommandRegistryBuilder command(CommandLineParser parser, Command command) { commandRegistry.addCommand(new AeshCommandContainer(parser, command)); return this; }