#727 finalization - minor javadoc changes

This commit is contained in:
ljacqu
2016-06-04 21:57:31 +02:00
parent 91111ca476
commit 2a4bb483a3
3 changed files with 10 additions and 11 deletions
@@ -35,7 +35,7 @@ public class CommandDescription {
*/
private String detailedDescription;
/**
* The executable command instance described by this object.
* The class implementing the command described by this object.
*/
private Class<? extends ExecutableCommand> executableCommand;
/**
@@ -112,7 +112,7 @@ public class CommandDescription {
}
/**
* Check whether this command description has a specific command.
* Check whether this command description has the given label.
*
* @param commandLabel The label to check for.
*
@@ -128,9 +128,9 @@ public class CommandDescription {
}
/**
* Return the {@link ExecutableCommand} instance defined by the command description.
* Return the {@link ExecutableCommand} class implementing this command.
*
* @return The executable command object.
* @return The executable command class
*/
public Class<? extends ExecutableCommand> getExecutableCommand() {
return executableCommand;
@@ -139,7 +139,7 @@ public class CommandDescription {
/**
* Return the parent.
*
* @return The parent command, or null for base commands.
* @return The parent command, or null for base commands
*/
public CommandDescription getParent() {
return parent;