Interface StateMachineComponentResolver<S,E>
- Type Parameters:
S
- the type of stateE
- the type of event
- All Known Implementing Classes:
AbstractStateMachineModelFactory
,DefaultStateMachineComponentResolver
,RepositoryStateMachineModelFactory
,UmlStateMachineModelFactory
public interface StateMachineComponentResolver<S,E>
Strategy interface for resolving state machine components by their id's.
-
Method Summary
Modifier and TypeMethodDescriptionresolveAction
(String id) Resolve action.resolveGuard
(String id) Resolve guard.
-
Method Details
-
resolveAction
Resolve action.- Parameters:
id
- the id- Returns:
- the action
-
resolveGuard
Resolve guard.- Parameters:
id
- the id- Returns:
- the guard
-