* @param smallDesc The small description of the argument
* @param longDesc The long description of the argument
* @return This for chaining.
*/
public UICommandAbstract<CTX, ARG> addArgument (String name, Class type, String desc) {
this.arguments.put(name, new CommandArgument(name, type, desc)); return this;
}