pn_design.mvc 270 B

1234567891011121314151617
  1. SimpleAttribute Natural {}
  2. SimpleAttribute String {}
  3. Class Place {
  4. tokens : Natural
  5. name : String
  6. }
  7. Class Transition {
  8. name : String
  9. }
  10. Association P2T (Place, Transition) {
  11. weight : Natural
  12. }
  13. Association T2P (Transition, Place) {
  14. weight : Natural
  15. }