public interface TableElementOnDraw
An interface that provides access to the
TableElement rendering
process.- Since:
- 1.3
-
Method Summary
Modifier and TypeMethodDescriptionvoidafterDraw(TableElement element, Graphics2D g2, Rectangle2D bounds) A callback method that is called after an element is drawn.voidbeforeDraw(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 (nullnot permitted).g2- the graphics target (nullnot permitted).bounds- the bounds (nullnot permitted).
-
afterDraw
A callback method that is called after an element is drawn.- Parameters:
element- the element (nullnot permitted).g2- the graphics target (nullnot permitted).bounds- the bounds (nullnot permitted).
-