Uses of Interface
org.jdrawing.DrawingModel

Packages that use DrawingModel
org.jdrawing Provides JDrawing class as well as related classes and interfaces. 
org.jdrawing.graphics Provides data model for JDrawing which uses basic drawing commands as elements.  
 

Uses of DrawingModel in org.jdrawing
 

Subinterfaces of DrawingModel in org.jdrawing
 interface IndexedDrawingModel
          The interface that defines a data model with some optimization capabilities.
 

Classes in org.jdrawing that implement DrawingModel
 class AbstractDrawingModel
          This abstract class provides default implementations for most of the methods in the DrawingModel interface.
 class DefaultDrawingModel
          This is default implementation of DrawingModel interface.
 class LayeredDrawingModel
          This implementation of DrawingModel interface allows user to specify layer for each element.
 

Methods in org.jdrawing that return DrawingModel
 DrawingModel JDrawing.getModel()
          Returns the DrawingModel that is providing the data.
protected  DrawingModel JDrawing.createDefaultModel()
          Returns the default drawing model object, which is a DefaultDrawingModel.
 DrawingModel AbstractDrawingModelCache.getModel()
          Returns the DrawingModel that is cached by this cache.
 

Methods in org.jdrawing with parameters of type DrawingModel
 void QuadTreeDrawingModelCache.setModel(DrawingModel model)
           
 void JDrawing.setModel(DrawingModel model)
          Sets the DrawingModel that will provide the data.
 void GridDrawingModelCache.setModel(DrawingModel model)
           
 void DrawingModelCache.setModel(DrawingModel model)
          Sets the DrawingModel that will be cached by this cache.
 void DefaultDrawingModelCache.setModel(DrawingModel model)
           
 void AbstractDrawingModelCache.setModel(DrawingModel model)
           
 

Constructors in org.jdrawing with parameters of type DrawingModel
JDrawing(DrawingModel model)
          Returns an instance of JDrawing which displays the specified model.
 

Uses of DrawingModel in org.jdrawing.graphics
 

Classes in org.jdrawing.graphics that implement DrawingModel
 class GraphicsModel
          The implementation of DrawingModel interface that stores a sequence of graphics operations.