Uses of Interface
org.syrup.Task

Packages that use Task
org.syrup Provides all the basic Syrup interfaces. 
org.syrup.helpers Provides the most used implementations of Syrup interfaces. 
org.syrup.sql The concrete RDMS/JDBC implementation of Syrup. 
 

Uses of Task in org.syrup
 

Subinterfaces of Task in org.syrup
 interface PTask
          A persistent Task that is held by a WorkSpace.
 interface PTaskTemplate
          A template example of a PTask.
 

Methods in org.syrup that return Task
 Task Port.task()
          Returns the associated Task.
 Task[] Workflow.tasks()
          Returns all Tasks of this Workflow.
 

Uses of Task in org.syrup.helpers
 

Classes in org.syrup.helpers that implement Task
 class PTaskImpl
          A generic PTask Implementation.
 class PTaskTemplateImpl
          A generic PTaskTemplate implementation.
 class TaskImpl
          A generic Task implementation.
 

Methods in org.syrup.helpers that return Task
 Task InPortImpl.task()
           
 Task[] NetworkImpl.tasks()
           
 Task OutPortImpl.task()
           
 Task[] WorkflowImpl.tasks()
           
 

Methods in org.syrup.helpers with parameters of type Task
protected  org.xml.sax.helpers.AttributesImpl XMLOutput.taskAttributes(Task t)
          Returns the mapped Attributes of a Task.
 

Constructors in org.syrup.helpers with parameters of type Task
InPortImpl(Task t, boolean p)
          Constructor for the InPortImpl object
NetworkImpl(InPort in1, InPort in2, OutPort out1, OutPort out2, Task[] t, Link[] l)
          Constructor for the NetworkImpl object
OutPortImpl(Task t, boolean p)
          Constructor for the OutPortImpl object
 

Uses of Task in org.syrup.sql
 

Methods in org.syrup.sql with parameters of type Task
protected  java.lang.String CreationFunctions.newTask(Task t, PTask parent, SyrupConnection con)
          Creates a new Task by executing SQL statements over a Connection.