blob: 15250c5bfb9377296bef81fa31f3b8b7965da2c0 (
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
33
34
35
36
37
38
39
40
41
42
43
|
<?xml version="1.0" ?>
<!DOCTYPE gxl
SYSTEM 'http://www.gupro.de/GXL/gxl-1.0.dtd'>
<gxl>
<graph edgemode="directed" id="input_selectTable.rst">
<node id="one">
<attr name="name">
<string>One</string>
</attr>
</node>
<node id="two">
<attr name="name">
<string>Two</string>
</attr>
</node>
<node id="three">
<attr name="name">
<string>Three</string>
</attr>
</node>
<node id="first">
<attr name="name">
<string>First</string>
</attr>
</node>
<node id="second">
<attr name="name">
<string>Second</string>
</attr>
</node>
<node id="third">
<attr name="name">
<string>Third</string>
</attr>
</node>
<edge from="two" to="one"/>
<edge from="three" to="one"/>
<edge from="three" to="two"/>
<edge from="first" to="one"/>
<edge from="second" to="first"/>
<edge from="second" to="second"/>
</graph>
</gxl>
|