Uses of Interface
org.syrup.Context

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

Uses of Context in org.syrup
 

Methods in org.syrup that return Context
 Context Result.context()
          Returns the Context from which the Result is computed.
 Context[] WorkSpace.get(PTaskTemplate template)
          Get the Contexts of PTasks that match the PTaskTemplate.
 

Methods in org.syrup with parameters of type Context
 Result Function.execute(Context context)
          Generates a Result given a Task's Context.
 

Uses of Context in org.syrup.functions
 

Methods in org.syrup.functions with parameters of type Context
 Result Abort.execute(Context context)
           
 Result Alarm.execute(Context context)
           
 Result BShell.execute(Context context)
           
 Result Concat.execute(Context context)
           
 Result Constant.execute(Context context)
           
 Result Duplicate.execute(Context context)
           
 Result Finish.execute(Context context)
           
 Result Flip.execute(Context context)
           
 Result Initiate.execute(Context context)
           
 Result Launch.execute(Context context)
           
 Result Null.execute(Context context)
           
 Result Shell.execute(Context context)
           
 Result Split.execute(Context context)
           
 

Uses of Context in org.syrup.helpers
 

Classes in org.syrup.helpers that implement Context
 class ContextImpl
          A generic Context Implementation.
 

Methods in org.syrup.helpers that return Context
 Context ResultImpl.context()
           
 Context WorkflowImpl.context()
           
 

Methods in org.syrup.helpers with parameters of type Context
 void XMLOutput.output(Context c, org.apache.xml.serializer.SerializationHandler handler)
          Serializes a Context.
 void XMLOutput.start(Context c, org.apache.xml.serializer.SerializationHandler handler)
          Description of the Method
 void XMLOutput.end(Context c, org.apache.xml.serializer.SerializationHandler handler)
          Description of the Method
 

Constructors in org.syrup.helpers with parameters of type Context
ResultImpl(Context c, boolean in1, boolean in2, Data out1, Data out2)
          Constructor for the ResultImpl object
 

Uses of Context in org.syrup.sql
 

Methods in org.syrup.sql that return Context
protected  Context ExecutionFunctions.start(PTask pt, java.lang.String w, SyrupConnection con)
          Starts the execution of a PTask by executing SQL statements over a Connection.
 Context[] GenericFunctions.get(PTaskTemplate t, SyrupConnection con)
          Get the Contexts of PTasks that match the PTaskTemplate.
protected  Context QueryFunctions.readContext(PTask p, SyrupConnection con)
          Returns the Context of a PTask by executing SQL statements over a Connection.
 Context[] SQLWorkSpace.get(PTaskTemplate t)