S
- the type of stateE
- the type of eventpublic abstract class AbstractTransition<S,E> extends java.lang.Object implements Transition<S,E>
Transition
.Modifier and Type | Field and Description |
---|---|
protected java.util.Collection<Action<S,E>> |
actions |
protected State<S,E> |
target |
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)
Instantiates a new abstract transition.
|
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,
SecurityRule securityRule)
Instantiates a new abstract transition.
|
Modifier and Type | Method and Description |
---|---|
void |
addActionListener(ActionListener<S,E> listener)
Adds the action listener.
|
void |
executeTransitionActions(StateContext<S,E> context)
Execute transition actions.
|
java.util.Collection<Action<S,E>> |
getActions()
Gets the transition actions.
|
Guard<S,E> |
getGuard()
Gets the guard of this transition.
|
TransitionKind |
getKind()
Gets the transition kind.
|
SecurityRule |
getSecurityRule()
Gets the security rule.
|
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.
|
void |
removeActionListener(ActionListener<S,E> listener)
Removes the action listener.
|
java.lang.String |
toString() |
boolean |
transit(StateContext<S,E> context)
Transit this transition with a give state context.
|
public 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)
source
- the sourcetarget
- the targetactions
- the actionsevent
- the eventkind
- the kindguard
- the guardtrigger
- the triggerpublic 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, SecurityRule securityRule)
source
- the sourcetarget
- the targetactions
- the actionsevent
- the eventkind
- the kindguard
- the guardtrigger
- the triggersecurityRule
- the security rulepublic State<S,E> getSource()
Transition
getSource
in interface Transition<S,E>
public Trigger<S,E> getTrigger()
Transition
getTrigger
in interface Transition<S,E>
public boolean transit(StateContext<S,E> context)
Transition
transit
in interface Transition<S,E>
context
- the state contextpublic Guard<S,E> getGuard()
Transition
getGuard
in interface Transition<S,E>
public TransitionKind getKind()
Transition
getKind
in interface Transition<S,E>
public SecurityRule getSecurityRule()
Transition
getSecurityRule
in interface Transition<S,E>
public State<S,E> getTarget()
Transition
getTarget
in interface Transition<S,E>
public java.util.Collection<Action<S,E>> getActions()
Transition
getActions
in interface Transition<S,E>
public void addActionListener(ActionListener<S,E> listener)
Transition
addActionListener
in interface Transition<S,E>
listener
- the listenerpublic void removeActionListener(ActionListener<S,E> listener)
Transition
removeActionListener
in interface Transition<S,E>
listener
- the listenerpublic final void executeTransitionActions(StateContext<S,E> context)
Transition
executeTransitionActions
in interface Transition<S,E>
context
- the state contextpublic java.lang.String toString()
toString
in class java.lang.Object