* @param desc The description of the flag
* @param defaultValue The default value for the flag
* @return This for chaining.
*/
public UICommandAbstract<CTX, ARG> addFlag (String name, String desc, boolean defaultValue) {
this.flags.put(name, new CommandFlag(name, desc, defaultValue)); return this;
}