Categories
Dictionary
Download
Project Details
Changes Log
FAQ
License


JGraphml is a Java library allowing to create graphml diagrams.

These diagrams are compatible with the yEd tool[1] .

Usage

Main Article: Usage

To create a diagram, you must use the GraphMLFactory class. For example:
      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);

Distribution

Main Article: Distribution

Dependencies

Main Article: Dependencies

Notes


Categories: general

Developers

Join this project:

To join this project, please contact the project administrators of this project, as shown on the project summary page.

Get the source code:

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