interface HelpFormatter
Creates help and usage strings for a command.
You can set the formatter for a command when configuring the context.
sealed class ParameterHelp |
abstract fun formatHelp(prolog: String, epilog: String, parameters: List<ParameterHelp>, programName: String = ""): String
Create the full help string. |
|
abstract fun formatUsage(parameters: List<ParameterHelp>, programName: String = ""): String
Create the one-line usage information for a command. |
open class PlaintextHelpFormatter : HelpFormatter |