2024-08-13 | Noble Numbat |
2024-06-21 | Maven 3.9.8 |
2024-02-02 | Maven 3.9.6 |
2023-10-11 | P2 repository deleted |
2023-10-10 | Maven 3.9.5 |
2023-08-21 | Maven 3.9.4 |
The Arakhnê.org Network Editor (NetEditor) is a free Java component that permits to edit and show connected-graphs. NetEditor is only composed by a drawing area in which you can draw nodes and edges.
NetEditor supports the following features:
- separation of the visual-language constructs and the drawings,
- graphical editing of the graph structure,
- algorithms to laying out the figures (Sugiyama-like and force-based algorithms),
- depth levels for nodes and egdes,
- can undoing and redoing user actions,
- clipboard and Drag&Drop management,
- exporting into graphical formats : GIF, JPEG, PNG, BMP
- exporting into vectorial formats : SVG, PDF, Encapsulated Postscript, PDF, Graphviz DOT, GXL, GraphML, GML
- Save and load into GML, GraphML, GXL, or NGR (zipped GML/GraphML/GXL) files.
This version of NetEditor is an original idea of Mahdi HANNOUN and Stéphane GALLAND. In 2001, we decide to develop a new graph-editing library because existing ones don't support our needs, or are to difficult to extend.
Note that the groupId and the artifactId of Maven modules to include can be found in the API document.
Details
- Main authors: GALLAND Stéphane
- License: LGPL
- Implementation: Java
- Stable Version: 17.0
- Development Version: 18.0-SNASPHOT
Download
Because NetEditor is a Maven project, we recommend to use our Maven repository as explained in: Maven Repository of Arakhnê.org.
If you do not want to use Maven, you should dowload the Jar file manually:
- All the Jar files of the NetEditor library are available at:
http://download.tuxfamily.org/arakhne/maven/org/arakhne/neteditor/. - The NetEditor library depends on the additional librarie(s):
Language Constructs Specification
NetEditor is designed to create editors for Visual Languages. NetEditor assumes the language constructs is separated than the graphical representations of these constructs. NetEditor also assumes all the language constructs is expressed with a graph composed with the three following concepts:
- Node: a node is a point in a graph. A node is linked to other nodes throough edges.
- Edge: an edge a connection between two nodes. An edge may be directed or not. An edge is not directly linked to nodes but to the anchors of the nodes. An edge has a start anchor and an end anchor.
- Anchor: an anchor is a connection point between a node and an edge. An anchor is defined inside a single node. Many edge could be connected to one anchor.
The language of the diagram that should be edited by NetEditor must be defined with Java classes that are extending the node, edge and anchor classes.
Language Constructs Figures
Each language construct (node, edge and anchor) may be associated to one graphical representation (also named the view of the construct). This graphical representation is in charge of the rendering of the construct's information on on a Java panel.
Example: a simple Finite State Machine editor
To illustrate the use of NetEditor, a simple Finite State Machine editor is provided. A tutorial explains to to create this editor step-by-step: FSM Editor Tutorial.