blob: 20447a71291e874bb496a60d28610086809c7def (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
digraph GlobalElement {
mindist = 2.0
1 -> 3 [label="complexType"]
1 -> 4 [label="alternative"]
1 -> 2 [label="annotation"]
1 -> 5 [label="key"]
1 -> 3 [label="simpleType"]
1 -> 5 [label="keyref"]
1 -> 5 [label="unique"]
2 -> 3 [label="complexType"]
2 -> 4 [label="alternative"]
2 -> 5 [label="key"]
2 -> 3 [label="simpleType"]
2 -> 5 [label="keyref"]
2 -> 5 [label="unique"]
3 -> 4 [label="alternative"]
3 -> 5 [label="key"]
3 -> 5 [label="keyref"]
3 -> 5 [label="unique"]
4 -> 4 [label="alternative"]
4 -> 5 [label="key"]
4 -> 5 [label="keyref"]
4 -> 5 [label="unique"]
5 -> 5 [label="key"]
5 -> 5 [label="keyref"]
5 -> 5 [label="unique"]
1 [shape=doublecircle, style=filled, color=blue]
2 [shape=doublecircle, style=filled, color=green]
3 [shape=doublecircle, style=filled, color=green]
4 [shape=doublecircle, style=filled, color=green]
5 [shape=doublecircle, style=filled, color=green]
}
|