Uses of Class
com.kirkwarez.wdysdv.batch.Task

Packages that use Task
com.kirkwarez.wdysdv.batch   
com.kirkwarez.wdysdv.control   
 

Uses of Task in com.kirkwarez.wdysdv.batch
 

Methods in com.kirkwarez.wdysdv.batch that return Task
 Task Batch.getTask(int index)
          Returns the task at the index position in the batch.
 Task Batch.removeTask(int index)
          Removes and returns the task at the index position in the batch.
 

Methods in com.kirkwarez.wdysdv.batch with parameters of type Task
 void Batch.addTask(Task task)
          Adds a task to the list.
 void Processor.process(Task task)
          Processes the given task.
 

Constructors in com.kirkwarez.wdysdv.batch with parameters of type Task
Batch(Task task)
          Constructs a new batch with an initial task.
 

Uses of Task in com.kirkwarez.wdysdv.control
 

Methods in com.kirkwarez.wdysdv.control that return Task
protected  Task WVControl.getNewTask()
          Retrieves data from the GUI and makes a Task out of it.
 

Methods in com.kirkwarez.wdysdv.control with parameters of type Task
 void WVControl.addTask(Task task)
          Adds the given task to the batchlist.
 void WVControl.processTask(Task task)
          Processes a single task.
protected  void WVControl.setNewTask(Task task)
          Takes the given Task and puts its data in the GUI.