com.vaadin.ui.components.colorpicker
Interface ColorChangeListener

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
ColorPickerHistory, ColorPickerPopup

public interface ColorChangeListener
extends java.io.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 Summary
 void colorChanged(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.


Copyright © 2000-2011 Vaadin Ltd. All Rights Reserved.