Uses of Interface
org.jdrawing.DrawingModel

Packages that use DrawingModel
org.jdrawing   
 

Uses of DrawingModel in org.jdrawing
 

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.
 DrawingModel AbstractDrawingModelCache.getModel()
          Returns the DrawingModel that is cached by this cache.
 

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

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