Interface ColorSelectorPopupMenuContentModel.ColorPreviewListener
-
- All Superinterfaces:
java.util.EventListener
- Enclosing class:
- ColorSelectorPopupMenuContentModel
public static interface ColorSelectorPopupMenuContentModel.ColorPreviewListener extends java.util.EventListener
Listener for tracking color preview events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onColorPreviewActivated(java.awt.Color color)
Invoked when the preview of a color in any of the color sections of this model is activated.void
onColorPreviewCanceled()
Invoked when the color preview has been canceled.
-
-
-
Method Detail
-
onColorPreviewActivated
void onColorPreviewActivated(java.awt.Color color)
Invoked when the preview of a color in any of the color sections of this model is activated.- Parameters:
color
- Color for which the preview has been activated.
-
onColorPreviewCanceled
void onColorPreviewCanceled()
Invoked when the color preview has been canceled.
-
-