Uses of Class
net.dpml.cli.builder.CommandBuilder

Packages that use CommandBuilder
net.dpml.cli.builder Helpers supporting the construction of a commandline model. 
 

Uses of CommandBuilder in net.dpml.cli.builder
 

Methods in net.dpml.cli.builder that return CommandBuilder
 CommandBuilder CommandBuilder.reset()
          Resets the CommandBuilder to the defaults for a new Command.
 CommandBuilder CommandBuilder.withName(String name)
          Specifies the name for the next Command that is created.
 CommandBuilder CommandBuilder.withDescription(String newDescription)
          Specifies the description for the next Command that is created.
 CommandBuilder CommandBuilder.withRequired(boolean newRequired)
          Specifies whether the next Command created is required or not.
 CommandBuilder CommandBuilder.withChildren(Group newChildren)
          Specifies the children for the next Command that is created.
 CommandBuilder CommandBuilder.withArgument(Argument newArgument)
          Specifies the argument for the next Command that is created.
 CommandBuilder CommandBuilder.withId(int newId)
          Specifies the id for the next Command that is created.