pn_design.mvc 390 B

12345678910111213141516171819202122232425
  1. SimpleAttribute Natural {
  2. name = "Natural"
  3. }
  4. SimpleAttribute String {
  5. name = "String"
  6. }
  7. Class Place {
  8. name = "Place"
  9. tokens : Natural
  10. name : String
  11. }
  12. Class Transition {
  13. name = "Transition"
  14. name : String
  15. }
  16. Association P2T (Place, Transition) {
  17. name = "P2T"
  18. weight : Natural
  19. }
  20. Association T2P (Transition, Place) {
  21. name = "T2P"
  22. weight : Natural
  23. }