Interface CellPainterCreator
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface to create an instance of an
ICellPainter.-
Method Summary
Modifier and TypeMethodDescriptioncreateCellPainter(Map<String, Object> painterProperties, ICellPainter underlying) Create anICellPainterusing the given painter properties.
-
Method Details
-
createCellPainter
Create anICellPainterusing the given painter properties.- Parameters:
painterProperties- The painter properties for painter initialization.underlying- TheICellPainterthat should be applied as wrapped painter to the createdICellPainter. Only works if the createdICellPainteris aCellPainterWrapper.- Returns:
- An instance of
ICellPainter.
-