@@ -51,6 +51,21 @@ public class TransitionData<S, E> {
|
||||
this(source, target, null, event, null, null, null, null, TransitionKind.EXTERNAL, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiates a new transition data.
|
||||
*
|
||||
* @param source the source
|
||||
* @param target the target
|
||||
* @param event the event
|
||||
* @param actions the actions
|
||||
* @param guard the guard
|
||||
* @param kind the kind
|
||||
*/
|
||||
public TransitionData(S source, S target, E event, Collection<Action<S, E>> actions,
|
||||
Guard<S, E> guard, TransitionKind kind) {
|
||||
this(source, target, null, event, null, null, actions, guard, TransitionKind.EXTERNAL, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiates a new transition data.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user