123456789101112131415161718192021 |
- SimpleAttribute String {}
- SimpleAttribute Boolean {}
- Class Rule {
- name : String
- }
- Class Node {
- type : String
- value? : String
- match? : Boolean
- }
- Class Root : Node {}
- Association contains (Rule, Node) {}
- Association Edge : Node (Node, Node) {
- name : String
- }
|