Package org.jdrawing.graphics

Provides data model for JDrawing which uses basic drawing commands as elements.

See:
          Description

Class Summary
AbstractDrawRect Base class for drawing operations, which outlines the rectangle.
AbstractFillRect Base class for drawing operations, which fills the rectangle.
Draw Graphics element which corresponds to Graphics2D.draw(java.awt.Shape)
Draw3DRect Graphics element which corresponds to Graphics.draw3DRect(int, int, int, int, boolean)
DrawImage Graphics element which corresponds to Graphics.drawImage(Image, int, int, ImageObserver).
DrawLine Graphics element which corresponds to Graphics.drawLine(int, int, int, int)
DrawOval Graphics element which corresponds to Graphics.drawOval(int, int, int, int)
DrawPolygon Graphics element which corresponds to Graphics.drawPolygon(Polygon)
DrawRect Graphics element which corresponds to Graphics.drawRect(int, int, int, int)
DrawString Graphics element which corresponds to Graphics.drawString(String, int, int)
Fill Graphics element which corresponds to Graphics2D.fill(java.awt.Shape)
Fill3DRect Graphics element which corresponds to Graphics.fill3DRect(int, int, int, int, boolean)
FillOval Graphics element which corresponds to Graphics.fillOval(int, int, int, int)
FillPolygon Graphics element which corresponds to Graphics.fillPolygon(Polygon)
FillRect Graphics element which corresponds to Graphics.fillRect(int, int, int, int)
GraphicsElement Base class for entities, that can be added to GraphicsModel.
GraphicsModel The implementation of DrawingModel interface that stores a set of graphics elements.
GraphicsOperation This is the base class for all elements, representing drawing operations.
Group Combines several elements.
PolygonOperation Base class for operations, which get Polygon as argument.
RectangleOperation Base class for operations, which get Rectangle as argument.
ShapeOperation Base class for operations, which get Shape as argument.
 

Package org.jdrawing.graphics Description

Provides data model for JDrawing which uses basic drawing commands as elements. Elements can be grouped. Styles and affine transformations can by applied to elements and groups.