public interface Composable
This interface is a composition utility, which has to be implemented by a
software component for state machine-based composition.
Compatibility: Java 9.
- Since:
- 1.0
-
Method Summary
Modifier and Type Method Description AbstractStateMachinestate_machine()This method returns the internal state machine of a software component.
-
Method Details
-
state_machine
AbstractStateMachine state_machine()This method returns the internal state machine of a software component.Its typical implementation is as follows:
return _my_state_machine;where the type of the_my_state_machinefield in the component isAbstractStateMachine.- Returns:
-