Guest User

Untitled

a guest
Jul 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <parallel id="p">
  2.  
  3. <transition event="done.state.p" target="someOtherState"/>
  4.  
  5. <state id="S1" initial="S11">
  6. <state id="S11">
  7. <transition event="e4" target="S12"/>
  8. </state>
  9. <state id="S12">
  10. <transition event="e1" target="S1Final"/>
  11. </state>
  12. <final id="S1Final"/>
  13. </state>
  14.  
  15. <state id="S2" initial="S21">
  16. <state id=S21">
  17. <transition event="e1" target="S22"/>
  18. </state>
  19. <state id="S22">
  20. <transition event="e2" target="S2Final/>
  21. </state>
  22. <final id="S2Final"/>
  23. </state>
  24.  
  25. </parallel>
Add Comment
Please, Sign In to add comment