Uses of Interface
edu.ull.cgunay.utils.Task

Packages that use Task
edu.ull.cgunay.plots Grapher independent plotting system that allows using external grapher programs to display plots created in Java.  
edu.ull.cgunay.utils General Java utilities, specifically application independent high level iteration facilities based on the Java 2 Collections technologies.  
 

Uses of Task in edu.ull.cgunay.plots
 

Classes in edu.ull.cgunay.plots that implement Task
(package private)  class SuperposedDataPlot.AxisFactory
           
 

Uses of Task in edu.ull.cgunay.utils
 

Subinterfaces of Task in edu.ull.cgunay.utils
 interface TaskWithReturn
          Contains additional method for returning an intermediate value from task.
 

Classes in edu.ull.cgunay.utils that implement Task
 class Iteration
          Allows iterating on the Collections of JAVA 2 SDK with a high level interface.
 class StringTask
          Iteration task that accumulates a String value.
 class UninterruptedIteration
          Loop until a break without complaining.
 

Fields in edu.ull.cgunay.utils declared as Task
(package private)  Task ParallelTask.task
          Task to be executed at each step by each thread.
(package private)  Task Objective.task
           
 

Methods in edu.ull.cgunay.utils with parameters of type Task
static void UninterruptedIteration.loop(Iterator i, Task t)
           
static void UninterruptedIteration.loop(Object[] array, Task t)
           
static void UninterruptedIteration.loop(Collection c, Task t)
           
static void Iteration.loop(Iterator i, Task t)
          Loop on Iterator values calling Task.
static void Iteration.loop(Object[] array, Task t)
          Loop on Object[] values calling Task.
static void Iteration.loop(Collection c, Task t)
          Convenience method with Collection parameter, calls another loop() method.
 

Constructors in edu.ull.cgunay.utils with parameters of type Task
ParallelTask(Collection collection, Task task)
          Set collection and task.
Objective(ParallelTask lock, Task task, Object o)