Uses of Interface
org.apache.batik.gvt.ShapePainter
Packages that use ShapePainter
Package
Description
Provides an API for mapping and maintaining consistency between
the SVG DOM tree and the GVT tree.
Contains all of the interfaces for describing and painting vector
graphics as Java objects.
-
Uses of ShapePainter in org.apache.batik.bridge
Methods in org.apache.batik.bridge that return ShapePainterModifier and TypeMethodDescriptionstatic ShapePainter
PaintServer.convertFillAndStroke
(Element e, ShapeNode node, BridgeContext ctx) Returns aShapePainter
defined on the specified element and for the specified shape node, and using the specified bridge context.static ShapePainter
PaintServer.convertMarkers
(Element e, ShapeNode node, BridgeContext ctx) Returns aShapePainter
defined on the specified element and for the specified shape node.static ShapePainter
PaintServer.convertStrokePainter
(Element e, ShapeNode node, BridgeContext ctx) (package private) ShapePainter
SVGDecoratedShapeElementBridge.createFillStrokePainter
(BridgeContext ctx, Element e, ShapeNode shapeNode) protected ShapePainter
SVGLineElementBridge.createFillStrokePainter
(BridgeContext ctx, Element e, ShapeNode shapeNode) Creates the shape painter associated to the specified element.(package private) ShapePainter
SVGDecoratedShapeElementBridge.createMarkerPainter
(BridgeContext ctx, Element e, ShapeNode shapeNode) protected ShapePainter
SVGCircleElementBridge.createShapePainter
(BridgeContext ctx, Element e, ShapeNode shapeNode) protected ShapePainter
SVGDecoratedShapeElementBridge.createShapePainter
(BridgeContext ctx, Element e, ShapeNode shapeNode) Creates the shape painter associated to the specified element.protected ShapePainter
SVGEllipseElementBridge.createShapePainter
(BridgeContext ctx, Element e, ShapeNode shapeNode) protected ShapePainter
SVGRectElementBridge.createShapePainter
(BridgeContext ctx, Element e, ShapeNode shapeNode) protected ShapePainter
SVGShapeElementBridge.createShapePainter
(BridgeContext ctx, Element e, ShapeNode shapeNode) Creates the shape painter associated to the specified element. -
Uses of ShapePainter in org.apache.batik.gvt
Classes in org.apache.batik.gvt that implement ShapePainterModifier and TypeClassDescriptionclass
A shape painter which consists of multiple shape painters.class
A shape painter that can be used to fill a shape.class
A shape painter that can be used to paint markers on a shape.class
A shape painter that can be used to draw the outline of a shape.Fields in org.apache.batik.gvt declared as ShapePainterModifier and TypeFieldDescriptionprotected ShapePainter[]
CompositeShapePainter.painters
The enclosedShapePainter
s of this composite shape painter.protected ShapePainter
ShapeNode.shapePainter
The shape painter used to paint the shape of this shape node.Methods in org.apache.batik.gvt that return ShapePainterModifier and TypeMethodDescriptionCompositeShapePainter.getShapePainter
(int index) Returns the shape painter at the specified index.ShapeNode.getShapePainter()
Returns theShapePainter
used by this shape node to render its shape.Methods in org.apache.batik.gvt with parameters of type ShapePainterModifier and TypeMethodDescriptionvoid
CompositeShapePainter.addShapePainter
(ShapePainter shapePainter) Adds the specified shape painter to the shape painter..void
ShapeNode.setShapePainter
(ShapePainter newShapePainter) Sets theShapePainter
used by this shape node to render its shape.