info.joseluismartin.cmd
Interface Task

All Superinterfaces:
Command
All Known Implementing Classes:
DefaultTask

public interface Task
extends Command

Task Interface for Composite of Commands

Author:
Jose Luis Martin - (chelu.es@gmail.com)

Method Summary
 void addCommand(Command c)
          Add Command to command list
 void addPostProcessor(Command c)
          Add a Command to postprocesor list
 void addPreprocesor(Command c)
          Add a Command to preprocesor list
 void removeComannd(Command c)
          remove a Command from command list
 void removePostProcessor(Command c)
          Remove a Command from postprocesor list
 void removePreprocesor(Command c)
          Remove a Command from preprocesor list
 
Methods inherited from interface info.joseluismartin.cmd.Command
execute, getName, onFault, undo
 

Method Detail

addCommand

void addCommand(Command c)
Add Command to command list

Parameters:
c - command to add

removeComannd

void removeComannd(Command c)
remove a Command from command list

Parameters:
c - command to remove

addPreprocesor

void addPreprocesor(Command c)
Add a Command to preprocesor list

Parameters:
c - command to add

removePreprocesor

void removePreprocesor(Command c)
Remove a Command from preprocesor list

Parameters:
c - command to remove

addPostProcessor

void addPostProcessor(Command c)
Add a Command to postprocesor list

Parameters:
c - command to add

removePostProcessor

void removePostProcessor(Command c)
Remove a Command from postprocesor list

Parameters:
c - command to remove


Copyright © 2012 JDAL. All Rights Reserved.