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 a ColorChangeEvent implements this interface, and the object created with that class is registered with a component using the component's addColorChangeListener method. When the colorChange event occurs, that object's appropriate method is invoked.
    Since:
    7.0.0
    See Also:
    ColorChangeEvent
    • 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.