Uses of Class
org.shiwa.fgi.iwir.AbstractPort

Packages that use AbstractPort
org.shiwa.fgi.iwir Provides simple java classes to generate an IWIR workflow. 
 

Uses of AbstractPort in org.shiwa.fgi.iwir
 

Subclasses of AbstractPort in org.shiwa.fgi.iwir
 class AbstractDataPort
          The Class AbstractDataPort represents a port and is the super class for all data ports.
 class InputPort
          The Class InputPort servers as an identifier for the data flow.
 class LoopCounter
          The Class LoopCounter defines the control flow of the ForTask.
 class LoopElement
          The Class LoopElement controls the control flow of the ForEachTask.
 class LoopPort
          The Class LoopPort is used to express a cyclic data flow.
 class OutputPort
          The Class OutputPort serves as identifier for the data flow.
 class UnionPort
          The Class UnionPort is used to collect and access data produced in different iteration executions.
 

Methods in org.shiwa.fgi.iwir that return AbstractPort
 AbstractPort LoopCounter.getFromPort()
          Returns the from-port if it exist, otherwise returns null.
 AbstractPort DataLink.getFromPort()
          Gets the source port.
 AbstractPort AbstractTask.getPort(java.lang.String portName)
          Returns the port identified by its name or null if the port is not known.
 AbstractPort LoopCounter.getStepPort()
          Returns the step-port if it exist, otherwise null.
 AbstractPort LoopCounter.getToPort()
          Returns the to-port if it exist, otherwise null.
 AbstractPort DataLink.getToPort()
          Gets the target port.
 

Methods in org.shiwa.fgi.iwir that return types with arguments of type AbstractPort
 java.util.List<AbstractPort> AbstractPort.getAllSuccessors()
          Gets the all successors of a port.
 java.util.List<AbstractPort> AbstractPort.getPredecessors()
          Gets a list of predecessors.
 java.util.List<AbstractPort> AbstractPort.getSuccessors()
          Gets a list of successors.
 

Methods in org.shiwa.fgi.iwir with parameters of type AbstractPort
 void AbstractCompoundTask.addLink(AbstractPort from, AbstractPort to)
          Adds an additional link, linking the two given ports.
 

Constructors in org.shiwa.fgi.iwir with parameters of type AbstractPort
DataLink(AbstractPort from, AbstractPort to)
          Instantiates a new data link.