public interface TableElementOnDraw
An interface that provides access to the
TableElement
rendering
process.- Since:
- 1.3
-
Method Summary
Modifier and TypeMethodDescriptionvoid
afterDraw
(TableElement element, Graphics2D g2, Rectangle2D bounds) A callback method that is called after an element is drawn.void
beforeDraw
(TableElement element, Graphics2D g2, Rectangle2D bounds) A callback method that is called before an element is drawn.
-
Method Details
-
beforeDraw
A callback method that is called before an element is drawn.- Parameters:
element
- the element (null
not permitted).g2
- the graphics target (null
not permitted).bounds
- the bounds (null
not permitted).
-
afterDraw
A callback method that is called after an element is drawn.- Parameters:
element
- the element (null
not permitted).g2
- the graphics target (null
not permitted).bounds
- the bounds (null
not permitted).
-