Interface MultiSplitPane.DividerPainter
-
- All Known Implementing Classes:
MultiSplitPane.DefaultDividerPainter
- Enclosing class:
- MultiSplitPane
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface MultiSplitPane.DividerPainter
Draws a single Divider. Typically used to specialize the way the active Divider is painted.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
paint(java.awt.Graphics g, MultiSplitLayout.Divider divider)
Paint a single Divider.
-
-
-
Method Detail
-
paint
void paint(java.awt.Graphics g, MultiSplitLayout.Divider divider)
Paint a single Divider.- Parameters:
g
- the Graphics object to paint withdivider
- the Divider to paint
-
-