org.apache.batik.gvt
Interface ShapePainter

All Known Implementing Classes:
FillShapePainter, MarkerShapePainter, StrokeShapePainter, CompositeShapePainter

public interface ShapePainter

Renders the shape of a ShapeNode.


Method Summary
 java.awt.Shape getPaintedArea()
          Returns the area painted by this shape painter.
 java.awt.Shape getShape()
          Gets the shape this shape painter is associated with.
 void paint(java.awt.Graphics2D g2d)
          Paints the specified shape using the specified Graphics2D.
 void setShape(java.awt.Shape shape)
          Sets the Shape this shape painter is associated with.
 

Method Detail

paint

public void paint(java.awt.Graphics2D g2d)
Paints the specified shape using the specified Graphics2D.
Parameters:
g2d - the Graphics2D to use

getPaintedArea

public java.awt.Shape getPaintedArea()
Returns the area painted by this shape painter.

setShape

public void setShape(java.awt.Shape shape)
Sets the Shape this shape painter is associated with.
Parameters:
shape - new shape this painter should be associated with. Should not be null.

getShape

public java.awt.Shape getShape()
Gets the shape this shape painter is associated with.
Returns:
shape associated with this painter


Copyright © 2001 Apache Software Foundation. All Rights Reserved.