blob: 448451a32c5dc524cefbf6407210731dd1224cbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
digraph Override {
mindist = 2.0
1 -> 2 [label="group"]
1 -> 2 [label="complexType"]
1 -> 2 [label="annotation"]
1 -> 2 [label="simpleType"]
1 -> 2 [label="element"]
1 -> 2 [label="notation"]
1 -> 2 [label="attribute"]
1 -> 2 [label="attributeGroup"]
2 -> 2 [label="group"]
2 -> 2 [label="complexType"]
2 -> 2 [label="annotation"]
2 -> 2 [label="simpleType"]
2 -> 2 [label="element"]
2 -> 2 [label="notation"]
2 -> 2 [label="attribute"]
2 -> 2 [label="attributeGroup"]
1 [shape=doublecircle, style=filled, color=blue]
2 [shape=doublecircle, style=filled, color=green]
}
|