Added support for help text to be shown on syntax errors and such.

This commit is contained in:
TomyLobo 2011-12-05 10:38:44 +01:00
parent fcb7e62cb0
commit 6764704c22
2 changed files with 12 additions and 1 deletions

View File

@ -67,4 +67,9 @@ public @interface Command {
* meaning that if it is given it must have a value
*/
String flags() default "";
/**
* A long description for the command.
*/
String help() default "";
}

View File

@ -242,7 +242,7 @@ public abstract class CommandsManager<T> {
* @return
*/
protected String getUsage(String[] args, int level, Command cmd) {
StringBuilder command = new StringBuilder();
final StringBuilder command = new StringBuilder();
command.append('/');
@ -262,6 +262,12 @@ public abstract class CommandsManager<T> {
}
command.append(cmd.usage());
final String help = cmd.help();
if (!help.isEmpty()) {
command.append("\n\n");
command.append(help);
}
return command.toString();
}