TGF, the "Trivial Graph Format," supports the pure graph structure together with (at most) one label per graph element. Anything related to position, dimension, or visual representation is ignored. Also, TGF does not provide support for nested graph structures.
Example 9.24, “TGF representation” shows the TGF representation for the example graph from Figure 9.5, “A simple graph”.
A TGF file is written using class TGFIOHandler.
The code fragment in Example 9.25, “Instantiating a TGFIOHandler” shows how to instantiate
a TGFIOHandler and using it to write a graph to file.
Example 9.25. Instantiating a TGFIOHandler
// Instantiate a TGF I/O handler and write the graph to file. IOHandler ioh = new TGFIOHandler(); writeGraphToFile(graph, ioh, "MyTGF.tgf");
By means of the following setter methods both writing and reading of node labels and edge labels, respectively can be controlled:
void setIgnoreNodeLabels(boolean ignore) |
|
Description | Setter methods from class TGFIOHandler. |
Due to the lack of support for both coordinates and dimensions reading a graph from a TGF file can result in a representation that differs from the exported graph.
Copyright ©2004-2012, yWorks GmbH. All rights reserved. |