commandMeta.setSetup(true);
commandMeta.setName("setup");
// favor help text from this annotation over others
SetupCommand def = Annotations.getAnnotation(method, SetupCommand.class);
if ((def.help() != null) && !def.help().trim().isEmpty())
{
commandMeta.setHelp(def.help());
}
}
/*
* We don't want to do this if it is a setup command.