Show last authors
1 (((
2 KGraph is the central data structure in KIELER for representation of graphs. It was generated using [[EMF>>url:http://www.eclipse.org/modeling/emf/||style="text-decoration: none;" shape="rect" class="ext-link"]] and therefore inherits all capabilities of EMF models such as storage in XML format, transformation, and validation. The KGraph is used for several purposes:
3
4 * as intermediate data structure in the [[KIML>>doc:KIELER.Discontinued Projects.Infrastructure for Meta Layout (KIML).WebHome]] project for exchanging layout information between graphical diagrams and graph layout algorithms,
5 * as a file format for graphs in the [[KWebS>>doc:KIELER.Discontinued Projects.Web Services (KWebS).WebHome]] project, and
6 * as basic structure for the notational model of the [[KLighD>>doc:KIELER.Lightweight Diagrams (KLighD).WebHome]] project.
7
8 The meta model and generated data structure is contained in the plugin [[{{code language="none"}}de.cau.cs.kieler.core.kgraph{{/code}}>>url:http://rtsys.informatik.uni-kiel.de/fisheye/browse/%7Ebr=master/kieler/plugins/de.cau.cs.kieler.core.kgraph||shape="rect"]].
9
10 See also [[KLayoutData>>doc:KIELER.Discontinued Projects.Infrastructure for Meta Layout (KIML).KLayoutData Meta Model.WebHome]] and [[KRendering>>doc:KIELER.Lightweight Diagrams (KLighD).The KRendering Notation Model.WebHome]].
11
12
13 )))
14
15 (((
16 = The Meta Model =
17
18 [[image:attach:kgraph.png]]
19
20 Each node in a KGraph may contain other nodes, thus representing a nested sub-graph. The graph itself is represented by a top-level node that has no parent node. Nodes may have incoming and outgoing edges, and each edge has references to its source node and its target node. Usage of ports is optional and can be applied to special cases such as data flow diagrams. If ports are used, they each contain a list of connected edges, and the edges have references to their corresponding source port and target port. Nodes, edges, and ports may have arbitrarily many labels, which are usually (but not necessarily) represented by text.Each element of the graph may contain arbitrary additional data, which must implement the interface KGraphData. There are two important extending models that use this interface: [[KLayoutData>>doc:KIELER.Discontinued Projects.Infrastructure for Meta Layout (KIML).KLayoutData Meta Model.WebHome]], which is used to store layout data for the graph, and [[KRendering>>doc:KIELER.Lightweight Diagrams (KLighD).The KRendering Notation Model.WebHome]], which adds graphical information. Graph data inherits from the plain Java IPropertyHolder interface, which enables it to provide a key-value mapping. Keys are IProperty instances, which have an identifier string and a type, and values are arbitrary objects of the corresponding type. This mapping is transient and is thus not stored in the XML format. The makePersistent() operation can be used to translate the mapping into a serializable list of string pairs.
21
22 == Editing KGraphs ==
23
24 KGraphs can be easily created and edited using our [[Textual KGraph (KGT)>>doc:KIELER.KIELER Pragmatics.KGraph Text (KGT).WebHome]] format.
25
26 == API Example ==
27
28 {{code theme="Eclipse" language="java"}}
29  
30 KGraphFactory factory = KGraphFactory.eINSTANCE;
31 KNode myGraph = factory.createKNode();
32
33 // Setting the parent reference automatically adds a node to
34 // the parent's list of children.
35 KNode node1 = factory.createKNode();
36 node1.setParent(myGraph);
37 KNode node2 = factory.createKNode();
38 node2.setParent(myGraph);
39
40 // Setting the source and target references automatically adds
41 // an edge to the corresponding incoming and outgoing edges lists.
42 // In the XML structure edges are contained by their source node.
43 KEdge edge = factory.createKEdge();
44 edge.setSource(node1);
45 edge.setTarget(node2);
46
47 // Setting the parent reference automatically adds a label to
48 // the parent's list of labels.
49 KLabel label = factory.createKLabel();
50 label.setText("Hello, World!");
51 label.setParent(edge);
52
53 // Setting the node reference automatically adds a port to the
54 // node's list of ports.
55 KPort port1 = factory.createKPort();
56 port1.setNode(node1);
57 KPort port2 = factory.createKPort();
58 port2.setNode(node2);
59
60 // Setting the source port / target port reference automatically
61 // adds an edge to the port's list of edges.
62 edge.setSourcePort(port1);
63 edge.setTargetPort(port2);
64 {{/code}}
65
66 A larger example that uses the KGraph for automatic layout is found in [[standalone/LayoutTest/src/test/layout/Test.java>>url:http://rtsys.informatik.uni-kiel.de/fisheye/browse/kieler/standalone/LayoutTest/src/test/layout/Test.java||shape="rect"]].
67 )))