Developing with the SDK > Introducing the SDK > Using the Graphics Framework Directly

Instead of, or as well as, using the high-level JViews Diagrammer API, you can make use of the lower-level API of JViews Framework.

A lower-level approach is appropriate only if you need to access low-level features directly or to create objects as subclasses of existing ones. In general, you should not need to use lower-level JavaBeans for GUI components or interactors; instead you are recommended to use the supplied JViews Diagrammer JavaBeans, see JViews Diagrammer Classes Available as Beans in Using the Designer.

This section points you to the documentation available on each of the following lower-level features:

If you would like to read an introduction to JViews Framework in general or make use of a tutorial, see Introducing ILOG JViews Framework in The Essential JViews Framework and Getting Started with JViews Framework in The Essential JViews Framework respectively.

More advanced lower-level features, such as nested managers and graphers, and link shapes and crossings, are described in Advanced Features of JViews Framework.

Accessing and Creating Basic Graphic Objects

The classes that represent basic graphic objects are listed in Graphic Objects in The Essential JViews Framework, which also gives information on how to use the supplied objects.

You can customize the supplied graphic objects in terms of colors, dimensions, and other properties. If you need to assemble an object constructed from several basic objects, consider using composite graphics instead, see Composite Graphics in Java Code.

If you require a new graphic object that can be implemented by specializing a supplied graphic object, or a completely new graphic object, you can create the required object by subclassing. For an example, see Creating a New Graphic Object Class in The Essential JViews Framework.

Storing Graphic Objects in Layers

The class that stores graphic objects in layers is IlvManager. It is compliant with the JavaBeans standard.

For information about the use of this class and related classes and interfaces, see Managers in The Essential JViews Framework.

Organizing Graphic Objects into Graphs

The class that organizes nodes and links into graphs is IlvGrapher. It is compliant with the JavaBeans standard.

For information about the use of this class and the classes and interfaces related to nodes and links, see Graphers in The Essential JViews Framework.

Composite Graphics in Java Code

The base class for composite graphics is IlvCompositeGraphic.

The composite graphics facility allows you to combine basic graphic objects or existing composite graphics as elements of a composite graphic. At a higher level, you can do this in CSS, as described in Using Composite Graphics; a a lower level, you can do the same in Java code, see Composite Graphics in The Essential JViews Framework.