Interface ColorChangeListener
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ColorPickerHistory,ColorPickerPopup
public interface ColorChangeListener extends Serializable
The listener interface for receiving colorChange events. The class that is interested in processing aColorChangeEventimplements this interface, and the object created with that class is registered with a component using the component'saddColorChangeListenermethod. When the colorChange event occurs, that object's appropriate method is invoked.- Since:
- 7.0.0
- See Also:
ColorChangeEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcolorChanged(ColorChangeEvent event)Called when a new color has been selected.
-
-
-
Method Detail
-
colorChanged
void colorChanged(ColorChangeEvent event)
Called when a new color has been selected.- Parameters:
event- An event containing information about the color change.
-
-