// favor help text from this annotation over others
DefaultCommand def = Annotations.getAnnotation(method, DefaultCommand.class);
if ((def.help() != null) && !def.help().trim().isEmpty())
{
commandMeta.setHelp(def.help());
}
}
// This works because @SetupCommand is annotated by @Command
if (Annotations.isAnnotationPresent(method, SetupCommand.class))