Package com.vaadin.v7.ui
Class AbstractSelect.CaptionChangeListener
- java.lang.Object
-
- com.vaadin.v7.ui.AbstractSelect.CaptionChangeListener
-
- All Implemented Interfaces:
SerializableEventListener,Item.PropertySetChangeListener,Property.ValueChangeListener,Serializable,EventListener
- Enclosing class:
- AbstractSelect
@Deprecated protected class AbstractSelect.CaptionChangeListener extends Object implements Item.PropertySetChangeListener, Property.ValueChangeListener
Deprecated.This is a listener helper for Item and Property changes that should cause a repaint. It should be attached to all items that are displayed, and the default implementation does this in paintContent(). Especially "lazyloading" components should take care to add and remove listeners as appropriate. Call addNotifierForItem() for each painted item (and remember to clear). NOTE: singleton, use getCaptionChangeListener().- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedCaptionChangeListener()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddNotifierForItem(Object itemId)Deprecated.voidclear()Deprecated.voiditemPropertySetChange(Item.PropertySetChangeEvent event)Deprecated.Notifies this listener that the Item's property set has changed.voidvalueChange(Property.ValueChangeEvent event)Deprecated.Notifies this listener that the Property's value has changed.
-
-
-
Method Detail
-
addNotifierForItem
public void addNotifierForItem(Object itemId)
Deprecated.
-
clear
public void clear()
Deprecated.
-
valueChange
public void valueChange(Property.ValueChangeEvent event)
Deprecated.Description copied from interface:Property.ValueChangeListenerNotifies this listener that the Property's value has changed.- Specified by:
valueChangein interfaceProperty.ValueChangeListener- Parameters:
event- value change event object
-
itemPropertySetChange
public void itemPropertySetChange(Item.PropertySetChangeEvent event)
Deprecated.Description copied from interface:Item.PropertySetChangeListenerNotifies this listener that the Item's property set has changed.- Specified by:
itemPropertySetChangein interfaceItem.PropertySetChangeListener- Parameters:
event- Property set change event object
-
-