FSA_MM.mvc 294 B

123456789101112131415161718
  1. include "primitives.alh"
  2. SimpleAttribute String {}
  3. SimpleAttribute Boolean {}
  4. ActionLanguage Action {}
  5. Class State {
  6. name = "State"
  7. name : String
  8. initial : Boolean
  9. }
  10. Association Transition (State, State) {
  11. trigger? : String {}
  12. raise? : String {}
  13. script : Action {}
  14. }