| |
|
| org.obe.xpdl.model.misc.AbstractWFElement org.obe.xpdl.model.transition.Transition
Transition | final public class Transition extends AbstractWFElement (Code) | | Implementation of a transition.
author: Adrian Price |
Transition | public Transition()(Code) | | |
Transition | public Transition(String id, String name, String from, String to)(Code) | | Construct a new Transition.
Parameters: id - The transition ID Parameters: name - The transition name Parameters: from - The activity ID where the transition starts Parameters: to - The activity ID where the transition ends |
getCondition | public Condition getCondition()(Code) | | Get the condition which is used to determine whether or not the
transition should be executed.
The condition |
getFrom | public String getFrom()(Code) | | Get the start activity ID
The start activity ID |
getTo | public String getTo()(Code) | | Get the end activity ID.
The end activity ID |
setCondition | public void setCondition(Condition condition)(Code) | | Set the condition which is used to determine whether or not the
transition should be executed.
Parameters: condition - The condition |
setFrom | public void setFrom(String from)(Code) | | Set the start activity ID.
Parameters: from - The new start activity ID |
setFromActivity | public void setFromActivity(Activity fromActivity)(Code) | | |
setTo | public void setTo(String to)(Code) | | Set the end activity ID.
Parameters: to - The end activty ID |
|
|
|