Uses of Class
org.apache.batik.gvt.Marker
Packages that use Marker
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 Marker in org.apache.batik.bridge
Methods in org.apache.batik.bridge that return MarkerModifier and TypeMethodDescriptionstatic Marker
PaintServer.convertMarker
(Element e, Value v, BridgeContext ctx) Returns aMarker
defined on the specified element by the specified value, and for the specified shape node.MarkerBridge.createMarker
(BridgeContext ctx, Element markerElement, Element paintedElement) Creates aMarker
according to the specified parameters.SVGMarkerElementBridge.createMarker
(BridgeContext ctx, Element markerElement, Element paintedElement) Creates aMarker
according to the specified parameters. -
Uses of Marker in org.apache.batik.gvt
Fields in org.apache.batik.gvt declared as MarkerModifier and TypeFieldDescriptionprotected Marker
MarkerShapePainter.endMarker
End Markerprotected Marker
MarkerShapePainter.middleMarker
Middle Markerprotected Marker
MarkerShapePainter.startMarker
Start MarkerMethods in org.apache.batik.gvt that return MarkerModifier and TypeMethodDescriptionMarkerShapePainter.getEndMarker()
Returns the marker that shall be drawn at the last vertex of the given shape.MarkerShapePainter.getMiddleMarker()
Returns the marker that shall be drawn at every other vertex (not the first or the last one) of the given shape.MarkerShapePainter.getStartMarker()
Returns the marker that shall be drawn at the first vertex of the given shape.Methods in org.apache.batik.gvt with parameters of type MarkerModifier and TypeMethodDescriptionvoid
MarkerShapePainter.setEndMarker
(Marker endMarker) Sets the marker that shall be drawn at the last vertex of the given shape.void
MarkerShapePainter.setMiddleMarker
(Marker middleMarker) Sets the marker that shall be drawn at every other vertex (not the first or the last one) of the given shape.void
MarkerShapePainter.setStartMarker
(Marker startMarker) Sets the marker that shall be drawn at the first vertex of the given shape.