Package org.kohsuke.args4j.spi
Annotation Interface SubCommand
Specifies a single sub-command.
- See Also:
-
Required Element Summary
Required Elements
-
Element Details
-
name
String nameName of the sub-command. This must appear as-is in the command line for this sub-command to be activated. -
impl
Class<?> implThe implementation class of this sub command. When a sub-command is selected, this class is instantiated and the rest of the arguments will be parsed against this new instance.
-