Uses of Class
org.apache.batik.gvt.Marker
-
Packages that use Marker Package Description org.apache.batik.bridge Provides an API for mapping and maintaining consistency between the SVG DOM tree and the GVT tree.org.apache.batik.gvt 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 Marker Modifier and Type Method Description static Marker
PaintServer. convertMarker(org.w3c.dom.Element e, Value v, BridgeContext ctx)
Returns aMarker
defined on the specified element by the specified value, and for the specified shape node.Marker
MarkerBridge. createMarker(BridgeContext ctx, org.w3c.dom.Element markerElement, org.w3c.dom.Element paintedElement)
Creates aMarker
according to the specified parameters.Marker
SVGMarkerElementBridge. createMarker(BridgeContext ctx, org.w3c.dom.Element markerElement, org.w3c.dom.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 Marker Modifier and Type Field Description protected Marker
MarkerShapePainter. endMarker
End Markerprotected Marker
MarkerShapePainter. middleMarker
Middle Markerprotected Marker
MarkerShapePainter. startMarker
Start MarkerMethods in org.apache.batik.gvt that return Marker Modifier and Type Method Description Marker
MarkerShapePainter. getEndMarker()
Returns the marker that shall be drawn at the last vertex of the given shape.Marker
MarkerShapePainter. getMiddleMarker()
Returns the marker that shall be drawn at every other vertex (not the first or the last one) of the given shape.Marker
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 Marker Modifier and Type Method Description private java.awt.geom.AffineTransform
MarkerShapePainter. computeMarkerTransform(Marker marker, java.awt.geom.Point2D markerPosition, double rotation)
Computes the transform for the input marker, so that it is positioned at the given position with the specified rotationvoid
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.
-