| org.drools.ruleflow.core.MilestoneNode
All known Subclasses: org.drools.ruleflow.core.impl.MilestoneNodeImpl,
MilestoneNode | public interface MilestoneNode extends Node(Code) | | Represents a milestone in a RuleFlow.
A milestone has an associated constraint.
Flow will only continue if this constraint has been satisfied.
author: Kris Verlaenen |
getConstraint | String getConstraint()(Code) | | Returns the constraint of the MilestoneNode.
the constraint of the MilestoneNode. |
getFrom | Connection getFrom()(Code) | | Returns the incoming connection of the MilestoneNode.
the incoming connection of the MilestoneNode. |
getTo | Connection getTo()(Code) | | Returns the outgoing connection of the MilestoneNode.
the outgoing connection of the MilestoneNode. |
setConstraint | void setConstraint(String constraint)(Code) | | Sets the constraint of the MilestoneNode.
Parameters: constraint - The constraint of the MilestoneNode |
|
|