blob: ba4871deb9fb633aa1c726ad0ae3c13683c5a6c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
digraph Redefine {
mindist = 2.0
1 -> 2 [label="group"]
1 -> 2 [label="complexType"]
1 -> 2 [label="annotation"]
1 -> 2 [label="simpleType"]
1 -> 2 [label="attributeGroup"]
2 -> 2 [label="group"]
2 -> 2 [label="complexType"]
2 -> 2 [label="annotation"]
2 -> 2 [label="simpleType"]
2 -> 2 [label="attributeGroup"]
1 [shape=doublecircle, style=filled, color=blue]
2 [shape=doublecircle, style=filled, color=green]
}
|