S - the type of stateE - the type of eventpublic abstract class AbstractTransition<S,E> extends java.lang.Object implements Transition<S,E>
Transition.| Constructor and Description |
|---|
AbstractTransition(State<S,E> source,
State<S,E> target,
java.util.Collection<Action<S,E>> actions,
E event,
TransitionKind kind,
Guard<S,E> guard,
Trigger<S,E> trigger) |
| Modifier and Type | Method and Description |
|---|---|
java.util.Collection<Action<S,E>> |
getActions()
Gets the transition actions.
|
TransitionKind |
getKind()
Gets the transition kind.
|
State<S,E> |
getSource()
Gets the source state of this transition.
|
State<S,E> |
getTarget()
Gets the target state of this transition.
|
Trigger<S,E> |
getTrigger()
Gets the transition trigger.
|
boolean |
transit(StateContext<S,E> context)
Transit this transition with a give state context.
|
public State<S,E> getSource()
TransitiongetSource in interface Transition<S,E>public State<S,E> getTarget()
TransitiongetTarget in interface Transition<S,E>public java.util.Collection<Action<S,E>> getActions()
TransitiongetActions in interface Transition<S,E>public Trigger<S,E> getTrigger()
TransitiongetTrigger in interface Transition<S,E>public boolean transit(StateContext<S,E> context)
Transitiontransit in interface Transition<S,E>context - the state contextpublic TransitionKind getKind()
TransitiongetKind in interface Transition<S,E>