- java.lang.Object
-
- com.ibm.java.diagnostics.utils.commands.CommandDescription
-
public class CommandDescription extends Object
Description for how a command should be executed
-
-
Constructor Summary
Constructors Constructor Description CommandDescription(String commandName, String argumentDescription, String helpDescription)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getArgumentDescription()
String
getCommandName()
String
getHelpDescription()
CommandDescription
getParent()
void
setArgumentDescription(String argumentDescription)
void
setCommandName(String commandName)
void
setHelpDescription(String helpDescription)
void
setParent(CommandDescription parent)
-
-
-
Method Detail
-
getCommandName
public String getCommandName()
-
setCommandName
public void setCommandName(String commandName)
-
getArgumentDescription
public String getArgumentDescription()
-
setArgumentDescription
public void setArgumentDescription(String argumentDescription)
-
getHelpDescription
public String getHelpDescription()
-
setHelpDescription
public void setHelpDescription(String helpDescription)
-
getParent
public CommandDescription getParent()
-
setParent
public void setParent(CommandDescription parent)
-
-