| Constructor and Description |
|---|
SelectCommand() |
| Modifier and Type | Method and Description |
|---|---|
void |
execute(Arguments arguments,
java.lang.ClassLoader classLoader)
Executes the command using the provided arguments.
|
java.lang.String |
getHelp()
Gets details help for the command.
|
java.lang.String |
getName()
Gets the name of the command.
|
Parser |
getParser()
Gets the parser of the command.
|
java.lang.String |
getSummary()
Gets a short summary of the command that's shown in the main help.
|
public java.lang.String getName()
CommandThe returned name should contain no spaces or special characters.
public java.lang.String getSummary()
CommandgetSummary in interface Commandpublic java.lang.String getHelp()
CommandReturning an empty string omits detailed help.
public Parser getParser()
Command