GraphmlFactory factory = GraphmlFactory.getInstance(); GraphmlDiagram diagram = factory.newDiagram();To create a node
GraphMLNode node = diagram.addNode();To create an edge between nodes:
GraphMLEdge node = diagram.addEdge(node1, node2);To save the diagram as a
graphml
file:factory.saveDiagram(diagram, file);
To join this project, please contact the project administrators of this project, as shown on the project summary page.
Source code for this project is available as downloads or through the git repository used by the project, as accessible from the project develop page.
Copyright 2021 Herve Girod. All Rights Reserved. Documentation and source under the BSD 3-Clause licence