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 that fill the rectangle.
ClearRect Graphics element which corresponds to Graphics.clearRect(int, int, int, int)
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)
GraphicsModel The implementation of DrawingModel interface that stores a sequence of graphics operations.
GraphicsModelBuilder Builds GraphicsModel using drawing operations of Graphics2D.
GraphicsOperation This is the base class for all elements, representing drawing operations.
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.
Style Encapsulates style information used to perform graphics operations.
 

Package org.jdrawing.graphics Description

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