public interface CommandProvider
The interface contains only methods for the help. The console should use inspection to find the commands. All public commands, starting with a '_' and taking a CommandInterpreter as parameter will be found. E.g.
public Object _hello( CommandInterpreter intp ) { return "hello " + intp.nextArgument(); }
Clients may implement this interface.
String getHelp()
Copyright © 2007–2018 The Apache Software Foundation. All rights reserved.