Perforce JViews Diagrammer Code Example: Tree Model Demo (Variant)
Description
This example shows how to write a new JViews Diagrammer data model that displays a set of objects that are not JavaBeans.
How to Run the Code Example as an Application
This code example can
be run as an application.
The installation directory contains
an executable JAR file,
diagrammer-treemodel2.jar
,
that allows you to execute the code example with a double click from a
file browser. Note that if you are using Internet Explorer, you can
open the installation directory
and execute the JAR file from the browser. This
technique may not work in other Web browsers.
Alternatively, you
can run the code example application from the command line.
First check that the Ant utility is properly configured. If not, see the
instructions on how to configure Ant for Perforce JViews.
Then, go to the installation directory
of the code example and type:
ant run
Topics Covered
- Defines a new JViews Diagrammer data model that displays a set of JavaBeans by subclassing IlvBasicSDMModel.
Detailed Description
This example shows how to write a new JViews Diagrammer data model that displays a set of objects that are not JavaBeans. The objects come from a default Swing TreeModel. This variant subclasses IlvBasicSDMModel directly instead of IlvAbstractSDMModel.
Installation Directory
The Tree Model Demo (Variant) code example is installed here.
Classes Involved
-
ilog.views.diagrammer.IlvDiagrammer
The main class of the diagram component.
-
ilog.views.diagrammer.application.IlvDiagrammerApplication
The ready-to-use Swing application based on the diagram component.
-
ilog.views.sdm.model.IlvBasicSDMModel
The base class for data models that contain arbitrary objects.
Source Files
-
TreeModel2Demo
The entry point of the example.