ilog.rules.factory
Class IlrTaskForkNodeStatement
- java.lang.Object
-
- ilog.rules.factory.IlrBaseStatement
-
- ilog.rules.factory.IlrFlowNodeStatement
-
- ilog.rules.factory.IlrControlNodeStatement
-
- ilog.rules.factory.IlrSplitNodeStatement
-
- ilog.rules.factory.IlrTaskForkNodeStatement
-
- All Implemented Interfaces:
- ilog.rules.factory.IlrSourceElement, IlrStatement, java.io.Serializable
public final class IlrTaskForkNodeStatement extends IlrSplitNodeStatement
Represents the class of aforknode in a rule flow.Warning: Serialized objects of this class will not be compatible with future releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of IBM Decision Server.
-
-
Constructor Summary
Constructors Constructor and Description IlrTaskForkNodeStatement(java.lang.String name)Builds aforknode for a ruleflow.IlrTaskForkNodeStatement(java.lang.String name, IlrFlowNodeStatement previousNode)Builds aforknode for a ruleflow and connects the created node to the passed node.
-
Method Summary
-
Methods inherited from class ilog.rules.factory.IlrSplitNodeStatement
close
-
Methods inherited from class ilog.rules.factory.IlrFlowNodeStatement
exploreStatement, getName, setNextNode
-
-
-
-
Constructor Detail
-
IlrTaskForkNodeStatement
public IlrTaskForkNodeStatement(java.lang.String name)
Builds aforknode for a ruleflow. It is useful to set a label if the node is the target of a goto statement.- Parameters:
name- The label used to target the node in a goto statement.
-
IlrTaskForkNodeStatement
public IlrTaskForkNodeStatement(java.lang.String name, IlrFlowNodeStatement previousNode)Builds aforknode for a ruleflow and connects the created node to the passed node. This constructor should not be called to connect the new node to anIlrTaskIfNodeStatementnor to anIlrTaskSwitchNodeStatement. Instead, you should useIlrTaskIfNodeStatement.setTrueNode,IlrTaskIfNodeStatement.setFalseNode,IlrTaskSwitchNodeStatement.setCaseNode,IlrTaskSwitchNodeStatement.setDefaultNode. It is useful to set a label if the node is the target of a goto statement.- Parameters:
name- The label used to target the node in a goto statement.previousNode- The node that is before the new node in the ruleflow. The two nodes are connected by calling the methodIlrFlowNodeStatement.setNextNode.
-
-