MVK_rules.mvc 282 B

123456789101112131415161718192021
  1. SimpleAttribute String {}
  2. SimpleAttribute Boolean {}
  3. Class Rule {
  4. name : String
  5. }
  6. Class Node {
  7. type : String
  8. value? : String
  9. match? : Boolean
  10. }
  11. Class Root : Node {}
  12. Association contains (Rule, Node) {}
  13. Association Edge : Node (Node, Node) {
  14. name : String
  15. }