22232425262728
public class AeshInternalCommandRegistry { private final Map<String, CommandContainer> registry = new HashMap<String, CommandContainer>(); public void addCommand(Command command) { putIntoRegistry(new AeshCommandContainerBuilder().build(command)); }
6566676869707172
registry.remove(name); } private CommandContainerBuilder getBuilder() { if(containerBuilder == null) containerBuilder = new AeshCommandContainerBuilder(); return containerBuilder; }
8889909192939495
16171819202122
5960616263646566