Package afcl.functions.objects
Class DataIns
- java.lang.Object
-
- afcl.functions.objects.DataIns
-
public class DataIns extends java.lang.Object
This class describes the data input ports of aFunction
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<PropertyConstraint>
getConstraints()
java.lang.String
getName()
Getter and Setterjava.lang.Boolean
getPassing()
java.util.List<PropertyConstraint>
getProperties()
java.lang.String
getSource()
java.lang.String
getType()
java.lang.String
getValue()
void
setConstraints(java.util.List<PropertyConstraint> constraints)
void
setName(java.lang.String name)
void
setPassing(java.lang.Boolean passing)
void
setProperties(java.util.List<PropertyConstraint> properties)
void
setSource(java.lang.String source)
void
setType(java.lang.String type)
void
setValue(java.lang.String value)
-
-
-
Constructor Detail
-
DataIns
public DataIns()
-
DataIns
public DataIns(java.lang.String name, java.lang.String type)
Constructor for data input ports- Parameters:
name
- Unique identifier for the data input porttype
- Data type of the data port
-
DataIns
public DataIns(java.lang.String name, java.lang.String type, java.lang.String source)
Constructor for data input ports- Parameters:
name
- Unique identifier for the data input porttype
- Data type of the data portsource
- Specifies where the data comes from
-
-
Method Detail
-
getName
public java.lang.String getName()
Getter and Setter
-
setName
public void setName(java.lang.String name)
-
getType
public java.lang.String getType()
-
setType
public void setType(java.lang.String type)
-
getSource
public java.lang.String getSource()
-
setSource
public void setSource(java.lang.String source)
-
getValue
public java.lang.String getValue()
-
setValue
public void setValue(java.lang.String value)
-
getPassing
public java.lang.Boolean getPassing()
-
setPassing
public void setPassing(java.lang.Boolean passing)
-
getProperties
public java.util.List<PropertyConstraint> getProperties()
-
setProperties
public void setProperties(java.util.List<PropertyConstraint> properties)
-
getConstraints
public java.util.List<PropertyConstraint> getConstraints()
-
setConstraints
public void setConstraints(java.util.List<PropertyConstraint> constraints)
-
-