Module PauWareTwo

Interface Composable


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
    AbstractStateMachine state_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_machine field in the component is AbstractStateMachine.

      Returns: