Uses of Interface
info.joseluismartin.cmd.Command

Packages that use Command
info.joseluismartin.cmd   
 

Uses of Command in info.joseluismartin.cmd
 

Subinterfaces of Command in info.joseluismartin.cmd
 interface Task
          Task Interface for Composite of Commands
 

Classes in info.joseluismartin.cmd that implement Command
 class DefaultCommand
          Simple base command to extends that do nothing
 class DefaultTask
          Composite of commands that delegate operations to collections.
 

Methods in info.joseluismartin.cmd that return types with arguments of type Command
 List<Command> DefaultTask.getCommands()
           
 List<Command> DefaultTask.getPostProcessors()
           
 List<Command> DefaultTask.getPreProcessors()
           
 List<Command> DefaultTask.newCommandList()
          Creates a new command list
 

Methods in info.joseluismartin.cmd with parameters of type Command
 void DefaultTask.addCommand(Command c)
          Add a Command to the command list of task
 void Task.addCommand(Command c)
          Add Command to command list
 void DefaultTask.addPostProcessor(Command c)
          Add a Command to postprocessor command list
 void Task.addPostProcessor(Command c)
          Add a Command to postprocesor list
 void DefaultTask.addPreprocesor(Command c)
          Add a Command to prepocesor command list
 void Task.addPreprocesor(Command c)
          Add a Command to preprocesor list
 void DefaultTask.removeComannd(Command c)
          Remove a Command from command list of task
 void Task.removeComannd(Command c)
          remove a Command from command list
 void DefaultTask.removePostProcessor(Command c)
          Remove a Command to postprocesor list of task
 void Task.removePostProcessor(Command c)
          Remove a Command from postprocesor list
 void DefaultTask.removePreprocesor(Command c)
          Remove a Command from preprocesor command list
 void Task.removePreprocesor(Command c)
          Remove a Command from preprocesor list
 

Method parameters in info.joseluismartin.cmd with type arguments of type Command
 void DefaultTask.addComand(List<Command> cmdList)
          Add a list of commands
 void DefaultTask.setCommands(List<Command> commands)
           
 void DefaultTask.setPostProcessors(List<Command> postProcessors)
           
 void DefaultTask.setPreProcessors(List<Command> preProcessors)
           
 



Copyright © 2012 JDAL. All Rights Reserved.