Uses of Class
org.apache.poi.xdgf.usermodel.shape.ShapeVisitor
-
Packages that use ShapeVisitor Package Description org.apache.poi.xdgf.usermodel org.apache.poi.xdgf.usermodel.shape -
-
Uses of ShapeVisitor in org.apache.poi.xdgf.usermodel
Methods in org.apache.poi.xdgf.usermodel with parameters of type ShapeVisitor Modifier and Type Method Description void
XDGFBaseContents. visitShapes(ShapeVisitor visitor)
Provides iteration over the shapes using the visitor pattern, and provides an easy way to convert shape coordinates into global coordinatesvoid
XDGFShape. visitShapes(ShapeVisitor visitor, int level)
The visitor will first visit this shape, then it's children.void
XDGFShape. visitShapes(ShapeVisitor visitor, java.awt.geom.AffineTransform tr, int level)
The visitor will first visit this shape, then it's children This is useful because exceptions will be marked with the shapes as it propagates up the shape hierarchy. -
Uses of ShapeVisitor in org.apache.poi.xdgf.usermodel.shape
Subclasses of ShapeVisitor in org.apache.poi.xdgf.usermodel.shape Modifier and Type Class Description class
ShapeDebuggerRenderer
class
ShapeRenderer
To use this to render only particular shapes, override it and provide an appropriate implementation of getAcceptor() or accept()class
ShapeTextVisitor
Only visits text nodes, accumulates text content into a string The text is returned in arbitrary order, with no regards to the location of the text on the page.
-