{
String name = commandFactory.getCommandName(context.getUIContext(), controller.getCommand());
UICommandMetadata metadata = controller.getMetadata();
display.add(metadata.getCategory()
+ " > "
+ new TerminalString(name, new TerminalColor(controller.isEnabled() ? Color.CYAN : Color.RED,
Color.DEFAULT)).toString() + " - " + metadata.getDescription());
}
UIOutput output = context.getUIContext().getProvider().getOutput();
PrintStream out = output.out();