com.jgraph.example |
|
Java Source File Name | Type | Comment |
EditorGraph.java | Class | An example that demonstrates how to use a JDialog
as a CellEditor in JGraph. |
GraphEdMV.java | Class | |
GraphEdX.java | Class | |
GraphEdXMenuBar.java | Class | |
GraphSelectionDemo.java | Class | With this example you'll learn how to listen to graph selection event,
program graph selections and navigate accross the graph groups.
This demo is is a bit like the GraphTreeModel demo. |
GraphTreeModel.java | Class | JGraph gives you the opportunity to define whatever graph model you want.
Since trees are only special cases of graph, we will here show a fairly simple
new graph model: a tree model.
So we build a new type inheriting most of its behavior
from DefaultTreeModel and adding the minimal requirements to be a GraphModel also.
To achieve this, we hold a GraphModel reference in GraphModelTreeNode which implements
TreeModel and we use GraphModelTreeNode as the TreeModel to construct the DefaultTreeModel.
Finally, don't believe graph models are limited to trees. |
JGraphFoldingManager.java | Class | |
JGraphGraphFactory.java | Class | A helper class that creates graphs. |
JGraphGroupRenderer.java | Class | |
JGraphShadowBorder.java | Class | |
Main.java | Class | |
MyPortView.java | Class | |
SerialGraph.java | Class | An example to demonstrate the use of serialization in JGraph. |