| 1234567891011121314151617181920212223 |
- <?xml version="1.1" ?>
- <diagram author="Sam Pieters" name="CompositeInitialStateTest">
- <description>
- Test if composite states are handled correctly.
- When initial in composite defined, don't go into the first state that is defined but in the initial.
- </description>
- <class name="MainApp" default="true">
- <scxml initial="state1">
- <state id="state1" initial="state11">
- <state id="state10">
- <transition target="." />
- </state>
- <state id="state11">
- <transition target="../state12" />
- </state>
- <state id="state12">
- <transition target="../../state2" />
- </state>
- </state>
- <state id="state2" />
- </scxml>
- </class>
- </diagram>
|