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

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

Uses of DataType in org.shiwa.fgi.iwir
 

Subclasses of DataType in org.shiwa.fgi.iwir
 class CollectionType
          The Class CollectionType represents the collection type of an IWIR data type.
 class SimpleType
          The Class SimpleType represents the simple types of an IWIR data type.
 

Methods in org.shiwa.fgi.iwir that return DataType
static DataType DataType.fromString(java.lang.String s)
          Returns a datatype object from a given string.
 DataType CollectionType.getType()
          Gets the type of the collection.
 DataType AbstractPort.getType()
          Gets the type oft the port.
 

Methods in org.shiwa.fgi.iwir with parameters of type DataType
 void AbstractPort.setType(DataType type)
          Sets the type of the port.
 

Constructors in org.shiwa.fgi.iwir with parameters of type DataType
AbstractDataPort(java.lang.String name, DataType type)
          Instantiates a new port.
CollectionType(DataType t)
          Instantiates a new collection type.
InputPort(java.lang.String name, DataType type)
          Instantiates a new input port.
LoopElement(java.lang.String name, DataType type)
          Instantiates a new loop element.
LoopPort(java.lang.String name, DataType type)
          Instantiates a new loop port.
OutputPort(java.lang.String name, DataType type)
          Instantiates a new output port.
UnionPort(java.lang.String name, DataType type)
          Instantiates a new union port.