interface CommandFactoryLookup
The interface to implement to look for commands. |
|
abstract class DefaultCommand : Command
Default implementation of Command using annotation to define itself. It is highly recommended to extend this class when implementing a command. It defines two hidden Options to create system properties ( |
|
open class DefaultCommandFactory<C : Command> : CommandFactory<C>
Default implementation of CommandFactory. This implementation defines the CLI from the given Command implementation (by reading the annotation). Then, Command instance are created by calling an empty constructor on the given Command implementation. |