Class OverlayPainterUtils
- java.lang.Object
-
- org.pushingpixels.substance.internal.painter.OverlayPainterUtils
-
public class OverlayPainterUtils extends Object
Contains utility methods related to overlay painters. This class is for internal use only.
-
-
Constructor Summary
Constructors Constructor Description OverlayPainterUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
paintOverlays(Graphics g, Component c, SubstanceSkin skin, DecorationAreaType decorationAreaType)
Paints all registered overlays on the specified component.
-
-
-
Method Detail
-
paintOverlays
public static void paintOverlays(Graphics g, Component c, SubstanceSkin skin, DecorationAreaType decorationAreaType)
Paints all registered overlays on the specified component. Overlay painters are registered withSubstanceSkin.addOverlayPainter(SubstanceOverlayPainter, DecorationAreaType...)
API.- Parameters:
g
- Graphics context.c
- Component.skin
- Component skin.decorationAreaType
- Component decoration area type.
-
-