Uses of Interface
org.syrup.Link

Packages that use Link
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 Link in org.syrup
 

Methods in org.syrup that return Link
 Link Context.in_1_link()
          The first input Link of this Context's PTask.
 Link Context.in_2_link()
          The second input Link of this Context's PTask.
 Link Context.out_1_link()
          The first output Link of this Context's PTask.
 Link Context.out_2_link()
          The second output Link of this Context's PTask.
 Link[] Workflow.links()
          Returns all Links between Tasks of this Workflow.
 

Uses of Link in org.syrup.helpers
 

Classes in org.syrup.helpers that implement Link
 class LinkImpl
          A generic Link Implementation.
 

Methods in org.syrup.helpers that return Link
 Link ContextImpl.in_1_link()
           
 Link ContextImpl.in_2_link()
           
 Link ContextImpl.out_1_link()
           
 Link ContextImpl.out_2_link()
           
 Link[] NetworkImpl.links()
           
 Link[] WorkflowImpl.links()
           
 

Methods in org.syrup.helpers with parameters of type Link
static boolean Utils.isFull(Link l)
          Returns true if the Link has content.
 

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

Uses of Link in org.syrup.sql
 

Methods in org.syrup.sql with parameters of type Link
protected  void CreationFunctions.newLink(Link l, java.util.Hashtable map, SyrupConnection con)
          Creates a new Link by executing SQL statements over a Connection.