org.jdrawing.graphics
Class DrawRect

java.lang.Object
  extended byorg.jdrawing.graphics.GraphicsOperation
      extended byorg.jdrawing.graphics.RectangleOperation
          extended byorg.jdrawing.graphics.AbstractDrawRect
              extended byorg.jdrawing.graphics.DrawRect
All Implemented Interfaces:
DrawingElement

public class DrawRect
extends AbstractDrawRect

Graphics element which corresponds to Graphics.drawRect(int, int, int, int)


Constructor Summary
DrawRect(int x, int y, int width, int height)
          Returns DrawRect with given rectangle.
DrawRect(int x, int y, int width, int height, Style style)
          Returns DrawRect with given rectangle.
 
Method Summary
 void paintOperation(java.awt.Graphics2D graphics)
          Performs drawing operation.
 
Methods inherited from class org.jdrawing.graphics.AbstractDrawRect
contains, getBounds, getBounds2D, getShapeOfOperation, intersects
 
Methods inherited from class org.jdrawing.graphics.RectangleOperation
getHeight, getWidth, getX, getY, setHeight, setRectangle, setWidth, setX, setY
 
Methods inherited from class org.jdrawing.graphics.GraphicsOperation
getPosition, getStyle, paint, setPosition, setStyle
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DrawRect

public DrawRect(int x,
                int y,
                int width,
                int height)
Returns DrawRect with given rectangle.

Parameters:
x - left edge of the rectangle
y - top edge of the rectangle
width - width of the rectangle
height - height of the rectangle

DrawRect

public DrawRect(int x,
                int y,
                int width,
                int height,
                Style style)
Returns DrawRect with given rectangle.

Parameters:
x - left edge of the rectangle
y - top edge of the rectangle
width - width of the rectangle
height - height of the rectangle
Method Detail

paintOperation

public void paintOperation(java.awt.Graphics2D graphics)
Performs drawing operation. This implementation invokes graphics.drawRect ().

Specified by:
paintOperation in class GraphicsOperation
Parameters:
graphics - graphics context to use for painting