Interface CommandHelpPrinter
-
- All Known Implementing Classes:
AbstractCommandHelpPrinter,AsciiDoctorCommandHelpPrinter,DocBookCommandHelpPrinter,UserConfCommandHelpPrinter
public interface CommandHelpPrinter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprintHelp(org.apache.karaf.shell.api.action.Action action, PrintStream out, boolean includeHelpOption)Print help for a single action to the out stream.voidprintOverview(Map<String,Set<String>> commands, PrintStream out)Print the overview of all given commands to the out stream.
-
-
-
Method Detail
-
printHelp
void printHelp(org.apache.karaf.shell.api.action.Action action, PrintStream out, boolean includeHelpOption)Print help for a single action to the out stream.- Parameters:
action- The commandAction.out- The stream where to print the help.includeHelpOption- True to include the help option in the doc, false else.
-
-