Prints the usage on #getConsole() using the underlying #usageFormatter.
()
| 1076 | * Prints the usage on {@link #getConsole()} using the underlying {@link #usageFormatter}. |
| 1077 | */ |
| 1078 | public void usage() { |
| 1079 | StringBuilder sb = new StringBuilder(); |
| 1080 | usageFormatter.usage(sb); |
| 1081 | getConsole().print(sb); |
| 1082 | } |
| 1083 | |
| 1084 | /** |
| 1085 | * Display the usage for this command. |