| org.obe.xpdl.model.ext.LoopBody org.obe.xpdl.model.ext.ForEach
ForEach | final public class ForEach extends LoopBody (Code) | | Describes a FOR_EACH iterator loop.
author: Adrian Price |
Constructor Summary | |
public | ForEach() Constructs a ForEach loop body. | public | ForEach(String dataField, String expr) Constructs a ForEach loop body. |
Method Summary | |
public String | getDataField() Returns the name of the data field with which to iterate. | public String | getExpr() Returns an expression that defines the collection over which to iterate. | public int | getType() | public void | setDataField(String dataField) Sets the name of the data field with which to iterate. | public void | setExpr(String expr) Sets the expression that defines the collection over which to iterate. | public String | toString() |
ForEach | public ForEach()(Code) | | Constructs a ForEach loop body.
|
ForEach | public ForEach(String dataField, String expr)(Code) | | Constructs a ForEach loop body.
Parameters: dataField - The data field name. Parameters: expr - The collection expression. |
getDataField | public String getDataField()(Code) | | Returns the name of the data field with which to iterate.
Data field name. |
getExpr | public String getExpr()(Code) | | Returns an expression that defines the collection over which to iterate.
The collection expression. |
getType | public int getType()(Code) | | |
setDataField | public void setDataField(String dataField)(Code) | | Sets the name of the data field with which to iterate.
Parameters: dataField - The data field name. |
setExpr | public void setExpr(String expr)(Code) | | Sets the expression that defines the collection over which to iterate.
The expression must yield an array, a collection or a map when evaluated.
Parameters: expr - The collection expression. |
Methods inherited from org.obe.xpdl.model.ext.LoopBody | abstract public int getType()(Code)(Java Doc)
|
|
|