Uses of Interface
org.simulare.Task

Packages that use Task
cin.aquario   
org.simulare   
 

Uses of Task in cin.aquario
 

Classes in cin.aquario that implement Task
 class ActionBreath
          Defines the breathing action.
 class ActionEat
           
 class ActionMove
          An action to execute corals and fishes movement into the aquarium.
 class AddItem
           
 class Report3D
          A 3D report to represent aquarium items.
 class ReportPrintln
          A report which print item on System.out.
 class SetupBoolean
           
 class SetupRandom
          Sets up an attribute with a value in the range of min up to max.
 

Uses of Task in org.simulare
 

Subinterfaces of Task in org.simulare
 interface VisualTask
          Define a tool for build visual setups, actions or reports. i.e 2D or 3D models.
 

Classes in org.simulare that implement Task
 class AbstractTask
          Defines a default facility task to be extended by non-visual tasks.
 

Methods in org.simulare that return Task
 Task ClockedTask.getTask()
           
 

Methods in org.simulare with parameters of type Task
 void Simulation.addTask(Task task)
           
 void Simulation.removeTask(Task task)
           
 void ClockedTask.setTask(Task task)
           
 

Constructors in org.simulare with parameters of type Task
ScheduledTask(Task task, Item item, long start)
           
PeriodicTask(Task task, Item item, long start, long period)
           
PeriodicTask(Task task, Item item, long start, long period, long end)
           
ClockedTask(Task task, Item item)