Uses of Class
org.jdrawing.graphics.GraphicsOperation

Packages that use GraphicsOperation
org.jdrawing.graphics Provides data model for JDrawing which uses basic drawing commands as elements.  
 

Uses of GraphicsOperation in org.jdrawing.graphics
 

Subclasses of GraphicsOperation in org.jdrawing.graphics
 class AbstractDrawRect
          Base class for drawing operations, which outlines the rectangle.
 class AbstractFillRect
          Base class for drawing operations that fill the rectangle.
 class ArcOperation
          Base class for operations, which get arc as argument.
 class ClearRect
          Graphics element which corresponds to Graphics.clearRect(int, int, int, int)
 class Draw
          Graphics element which corresponds to Graphics2D.draw(java.awt.Shape)
 class Draw3DRect
          Graphics element which corresponds to Graphics.draw3DRect(int, int, int, int, boolean)
 class DrawArc
          Graphics element which corresponds to Graphics.drawArc(int, int, int, int, int, int)
 class DrawImage
          Graphics element which corresponds to Graphics.drawImage(Image, int, int, ImageObserver).
 class DrawLine
          Graphics element which corresponds to Graphics.drawLine(int, int, int, int)
 class DrawOval
          Graphics element which corresponds to Graphics.drawOval(int, int, int, int)
 class DrawPolygon
          Graphics element which corresponds to Graphics.drawPolygon(Polygon)
 class DrawRect
          Graphics element which corresponds to Graphics.drawRect(int, int, int, int)
 class DrawRenderedImage
          Graphics element which corresponds to Graphics2D.drawRenderedImage(java.awt.image.RenderedImage, java.awt.geom.AffineTransform).
 class DrawRoundRect
          Graphics element which corresponds to Graphics.drawRoundRect(int, int, int, int, int, int)
 class DrawString
          Graphics element which corresponds to Graphics.drawString(String, int, int)
 class Fill
          Graphics element which corresponds to Graphics2D.fill(java.awt.Shape)
 class Fill3DRect
          Graphics element which corresponds to Graphics.fill3DRect(int, int, int, int, boolean)
 class FillArc
           
 class FillOval
          Graphics element which corresponds to Graphics.fillOval(int, int, int, int)
 class FillPolygon
          Graphics element which corresponds to Graphics.fillPolygon(Polygon)
 class FillRect
          Graphics element which corresponds to Graphics.fillRect(int, int, int, int)
 class FillRoundRect
          Graphics element which corresponds to Graphics.drawRoundRect(int, int, int, int, int, int)
 class PolygonOperation
          Base class for operations, which get Polygon as argument.
 class RectangleOperation
          Base class for operations, which get Rectangle as argument.
 class RoundRectOperation
          Base class for operations, which get reounded rectangle as argument.
 class ShapeOperation
          Base class for operations, which get Shape as argument.
 

Methods in org.jdrawing.graphics that return GraphicsOperation
 GraphicsOperation GraphicsModel.getOperationAt(int index)
          Returns GraphicsOperation located at specified position in the painting sequence of the model.
 

Methods in org.jdrawing.graphics with parameters of type GraphicsOperation
 void GraphicsModel.addOperation(GraphicsOperation operation)
          Appends GraphicsOperation object to the end of painting sequence of the model.
 void GraphicsModel.addOperationAt(GraphicsOperation operation, int index)
          Inserts GraphicsOperation object to the painting sequence of the model model at specified position.
 void GraphicsModel.removeOperation(GraphicsOperation operation)
          Removes given GraphicsOperation from the painting sequence of the model.
 void GraphicsModel.updateOperation(GraphicsOperation operation)
          Notify listeners about element changes.