Uses of Interface
com.pnfsoftware.jeb.util.interpreter.ICommandManager
Packages that use ICommandManager
Package
Description
Types used to build command interpreters, command trees, execution results, and completions.
-
Uses of ICommandManager in com.pnfsoftware.jeb.util.interpreter
Classes in com.pnfsoftware.jeb.util.interpreter that implement ICommandManagerModifier and TypeClassDescriptionclassA basic command manager that may be extended.Fields in com.pnfsoftware.jeb.util.interpreter declared as ICommandManagerModifier and TypeFieldDescriptionprotected ICommandManagerAbstractCommandHandler.parentParent command manager.Methods in com.pnfsoftware.jeb.util.interpreter that return ICommandManagerModifier and TypeMethodDescriptionAbstractCommandHandler.getParent()ICommandNode.getParent()Retrieve the parent, that is, this node's manager.SimpleCommandManager.getParent()Constructors in com.pnfsoftware.jeb.util.interpreter with parameters of type ICommandManagerModifierConstructorDescriptionAbstractCommandHandler(ICommandManager parent, String name) Create a command handler with no help text.AbstractCommandHandler(ICommandManager parent, String name, CommandParameter[] params, String help, String helpDetails) Create a command handler with explicit parameter descriptors.AbstractCommandHandler(ICommandManager parent, String name, String help) Create a command handler.AbstractCommandHandler(ICommandManager parent, String name, String[] paramNames, String help, String helpDetails) Create a command handler with named mandatory parameters.SimpleCommandManager(ICommandManager parent, String name) Create a command manager.