Uses of Interface
org.jline.console.CommandRegistry
-
Packages that use CommandRegistry Package Description org.jline.console JLine Console package provides a framework for building interactive command-line applications.org.jline.console.impl -
-
Uses of CommandRegistry in org.jline.console
Subinterfaces of CommandRegistry in org.jline.console Modifier and Type Interface Description interfaceConsoleEngineInterface for managing console variables, commands, and script execution in a console application.interfaceSystemRegistryInterface for aggregating command registries and dispatching command executions in a console application.Methods in org.jline.console with parameters of type CommandRegistry Modifier and Type Method Description static org.jline.reader.impl.completer.SystemCompleterCommandRegistry. aggregateCompleters(CommandRegistry... commandRegistries)Aggregates SystemCompleters from multiple command registries into a single completer.static org.jline.reader.impl.completer.SystemCompleterCommandRegistry. compileCompleters(CommandRegistry... commandRegistries)Aggregates and compiles SystemCompleters from multiple command registries into a single completer.static org.jline.reader.CandidateCommandRegistry. createCandidate(CommandRegistry[] commandRegistries, java.lang.String command)Creates a completion candidate for the specified command.voidSystemRegistry. register(java.lang.String command, CommandRegistry subcommandRegistry)Registers a subcommand registry for a main command.voidSystemRegistry. setCommandRegistries(CommandRegistry... commandRegistries)Sets the command registries to be used by this system registry. -
Uses of CommandRegistry in org.jline.console.impl
Classes in org.jline.console.impl that implement CommandRegistry Modifier and Type Class Description classAbstractCommandRegistryAbstract base class implementing common methods for command registries.classBuiltinsImplementation of CommandRegistry that provides built-in commands for JLine.classConsoleEngineImplManage console variables, commands and script execution.classDefaultPrinterDefault implementation of the Printer interface that provides syntax highlighting and formatting.classJlineCommandRegistryCommandRegistry common methods for JLine commands that are using HelpException.classSimpleSystemRegistryImplSimple SystemRegistry which stores variables in the LineReader.classSystemRegistryImplAggregate command registries.Methods in org.jline.console.impl with parameters of type CommandRegistry Modifier and Type Method Description voidSystemRegistryImpl. register(java.lang.String command, CommandRegistry subcommandRegistry)Register subcommand registryvoidSystemRegistryImpl. setCommandRegistries(CommandRegistry... commandRegistries)
-