| Modifier and Type | Method and Description |
|---|---|
State<T> |
Workflow.getCurrentState()
Returns the current state
|
State<T> |
WorkflowDefinition.getInitialState()
Getter for the field
initialState. |
State<T> |
TransitionDefinition.getSource()
Getter for the field
source. |
State<T> |
TransitionDefinition.getTarget()
Getter for the field
target. |
| Modifier and Type | Method and Description |
|---|---|
TransitionDefinition<T> |
State.createTransition(State<T> targetState,
Action<T>... actions)
createTransition
|
TransitionDefinition<T> |
State.createTransition(State<T> targetState,
List<? extends Action<T>> actions)
Creates a new transition definition for the given target state and action
|
| Constructor and Description |
|---|
TransitionDefinition(State<T> source,
State<T> target,
Action<T>... actions)
Constructor for TransitionDefinition.
|
TransitionDefinition(State<T> source,
State<T> target,
Action<T>... actions)
Constructor for TransitionDefinition.
|
TransitionDefinition(State<T> source,
State<T> target,
List<? extends Action<T>> actions)
Creates a new transition definition between the given source and target
|
TransitionDefinition(State<T> source,
State<T> target,
List<? extends Action<T>> actions)
Creates a new transition definition between the given source and target
|
WorkflowDefinition(State<T> initialState)
Constructor for WorkflowDefinition.
|
Copyright © 2007–2017 cedarsoft GmbH. All rights reserved.