Uses of Class
org.crsh.cli.descriptor.CommandDescriptor

Packages that use CommandDescriptor
org.crsh.cli.descriptor   
org.crsh.cli.impl.completion   
org.crsh.cli.impl.descriptor   
org.crsh.cli.impl.invocation   
org.crsh.cli.impl.lang   
org.crsh.cli.impl.parser   
org.crsh.lang.impl.groovy.command   
org.crsh.lang.impl.java   
org.crsh.shell.impl.command.spi   
org.crsh.standalone   
 

Uses of CommandDescriptor in org.crsh.cli.descriptor
 

Methods in org.crsh.cli.descriptor that return CommandDescriptor
abstract  CommandDescriptor<T> CommandDescriptor.getOwner()
           
 CommandDescriptor<T> CommandDescriptor.getSubordinate(String name)
          Returns a specified subordinate.
 

Methods in org.crsh.cli.descriptor that return types with arguments of type CommandDescriptor
abstract  Map<String,? extends CommandDescriptor<T>> CommandDescriptor.getSubordinates()
           
 

Methods in org.crsh.cli.descriptor with parameters of type CommandDescriptor
private  List<String[]> Format.Usage.collectParametersTuples(CommandDescriptor<?> command)
           
abstract  void Format.print(CommandDescriptor<?> command, Appendable stream)
          Print the specified command to the stream
 void Format.Describe.print(CommandDescriptor<?> command, Appendable stream)
           
 void Format.Man.print(CommandDescriptor<?> command, Appendable stream)
           
 void Format.Usage.print(CommandDescriptor<?> command, Appendable stream)
           
 void Format.Man.printDescriptionSection(CommandDescriptor<?> command, Appendable stream)
           
 void Format.Usage.printDetailsSection(CommandDescriptor<?> command, Appendable stream)
           
protected  void Format.printFQN(CommandDescriptor<?> command, Appendable stream)
          Print the full qualified name of the command.
protected  void Format.printFQNWithOptions(CommandDescriptor<?> command, Appendable stream)
           
 void Format.Man.printNameSection(CommandDescriptor<?> command, Appendable stream)
           
protected  boolean Format.Man.printOptions(boolean printed, CommandDescriptor<?> command, Appendable stream)
           
protected  boolean Format.Man.printParameters(boolean printed, CommandDescriptor<?> command, Appendable stream)
           
 void Format.Man.printParametersSection(CommandDescriptor<?> command, Appendable stream)
           
protected  void Format.Man.printSubordinates(CommandDescriptor<?> command, Appendable stream)
           
 void Format.Man.printSynopsisSection(CommandDescriptor<?> command, Appendable stream)
           
 void Format.Usage.printUsageSection(CommandDescriptor<?> command, Appendable stream)
           
 

Uses of CommandDescriptor in org.crsh.cli.impl.completion
 

Fields in org.crsh.cli.impl.completion declared as CommandDescriptor
private  CommandDescriptor<T> CommandCompletion.descriptor
          .
private  CommandDescriptor<T> CompletionMatcher.descriptor
          .
private  CommandDescriptor<T> OptionCompletion.descriptor
          .
 

Methods in org.crsh.cli.impl.completion with parameters of type CommandDescriptor
private  Completion CompletionMatcher.argument(CommandDescriptor<?> method, Completer completer, Delimiter delimiter)
           
 

Constructors in org.crsh.cli.impl.completion with parameters of type CommandDescriptor
CommandCompletion(CommandDescriptor<T> descriptor, String prefix, Delimiter delimiter)
           
CompletionMatcher(CommandDescriptor<T> descriptor)
           
OptionCompletion(CommandDescriptor<T> descriptor, Token.Literal.Option prefix)
           
 

Uses of CommandDescriptor in org.crsh.cli.impl.descriptor
 

Subclasses of CommandDescriptor in org.crsh.cli.impl.descriptor
 class HelpDescriptor<T>
           
 

Fields in org.crsh.cli.impl.descriptor declared as CommandDescriptor
private  CommandDescriptor<T> HelpDescriptor.delegate
          .
 

Methods in org.crsh.cli.impl.descriptor that return CommandDescriptor
 CommandDescriptor<T> HelpDescriptor.getDelegate()
           
 CommandDescriptor<T> HelpDescriptor.getOwner()
           
 

Methods in org.crsh.cli.impl.descriptor with parameters of type CommandDescriptor
static
<T> HelpDescriptor<T>
HelpDescriptor.create(CommandDescriptor<T> descriptor)
           
 

Constructors in org.crsh.cli.impl.descriptor with parameters of type CommandDescriptor
HelpDescriptor(CommandDescriptor<T> delegate)
           
HelpDescriptor(HelpDescriptor<T> owner, CommandDescriptor<T> delegate)
           
 

Uses of CommandDescriptor in org.crsh.cli.impl.invocation
 

Fields in org.crsh.cli.impl.invocation declared as CommandDescriptor
private  CommandDescriptor<T> InvocationMatch.descriptor
          .
private  CommandDescriptor<T> InvocationMatcher.descriptor
          .
 

Methods in org.crsh.cli.impl.invocation that return CommandDescriptor
 CommandDescriptor<T> InvocationMatch.getDescriptor()
           
 

Constructors in org.crsh.cli.impl.invocation with parameters of type CommandDescriptor
InvocationMatch(CommandDescriptor<T> descriptor)
           
InvocationMatch(InvocationMatch<T> owner, CommandDescriptor<T> descriptor)
           
InvocationMatcher(CommandDescriptor<T> descriptor)
           
InvocationMatcher(CommandDescriptor<T> descriptor, Iterable<Token> tokens)
           
 

Uses of CommandDescriptor in org.crsh.cli.impl.lang
 

Subclasses of CommandDescriptor in org.crsh.cli.impl.lang
(package private)  class ClassDescriptor<T>
           
(package private)  class MethodDescriptor<T>
           
 class ObjectCommandDescriptor<T>
           
 

Methods in org.crsh.cli.impl.lang that return CommandDescriptor
 CommandDescriptor<Instance<T>> ClassDescriptor.getOwner()
           
 CommandDescriptor<Instance<T>> MethodDescriptor.getOwner()
           
 

Methods in org.crsh.cli.impl.lang that return types with arguments of type CommandDescriptor
 Map<String,? extends CommandDescriptor<Instance<T>>> MethodDescriptor.getSubordinates()
           
 

Uses of CommandDescriptor in org.crsh.cli.impl.parser
 

Fields in org.crsh.cli.impl.parser declared as CommandDescriptor
protected  CommandDescriptor<?> Event.Parameter.command
          .
private  CommandDescriptor<T> Parser.command
          .
(package private)  CommandDescriptor<T> Status.Request.command
          .
(package private)  CommandDescriptor<T> Status.Response.command
          .
private  CommandDescriptor<?> Event.Subordinate.descriptor
          .
 

Methods in org.crsh.cli.impl.parser that return CommandDescriptor
 CommandDescriptor<?> Event.Parameter.getCommand()
           
 CommandDescriptor<?> Event.Subordinate.getDescriptor()
           
 

Constructors in org.crsh.cli.impl.parser with parameters of type CommandDescriptor
Event.Argument(CommandDescriptor<?> command, ArgumentDescriptor descriptor, List<Token.Literal> values)
           
Event.Option(CommandDescriptor<?> command, OptionDescriptor descriptor, Token.Literal.Option token, List<Token.Literal.Word> values)
           
Event.Parameter(CommandDescriptor<?> command, D parameter, List<T> values)
           
Event.Subordinate.Explicit(CommandDescriptor<?> descriptor, Token.Literal.Word token)
           
Event.Subordinate.Implicit(CommandDescriptor<?> descriptor, Token.Literal trigger)
           
Event.Subordinate(CommandDescriptor<?> descriptor)
           
Parser(Tokenizer tokenizer, CommandDescriptor<T> command, Mode mode)
           
Status.Request(Mode mode, Tokenizer tokenizer, CommandDescriptor<T> command)
           
 

Uses of CommandDescriptor in org.crsh.lang.impl.groovy.command
 

Fields in org.crsh.lang.impl.groovy.command declared as CommandDescriptor
private  CommandDescriptor<Instance<T>> GroovyScriptShellCommand.descriptor
          .
 

Methods in org.crsh.lang.impl.groovy.command that return CommandDescriptor
 CommandDescriptor<Instance<T>> GroovyScriptShellCommand.getDescriptor()
           
 

Uses of CommandDescriptor in org.crsh.lang.impl.java
 

Fields in org.crsh.lang.impl.java declared as CommandDescriptor
private  CommandDescriptor<Instance<T>> ClassShellCommand.descriptor
          .
 

Methods in org.crsh.lang.impl.java that return CommandDescriptor
 CommandDescriptor<Instance<T>> ClassShellCommand.getDescriptor()
           
 

Uses of CommandDescriptor in org.crsh.shell.impl.command.spi
 

Methods in org.crsh.shell.impl.command.spi that return CommandDescriptor
abstract  CommandDescriptor<T> Command.getDescriptor()
          Returns the command descriptor.
 

Uses of CommandDescriptor in org.crsh.standalone
 

Fields in org.crsh.standalone declared as CommandDescriptor
private  CommandDescriptor<Instance<CRaSH>> CRaSH.descriptor
          .
 



Copyright © 2015 eXo Platform SAS. All Rights Reserved.