Package com.vaadin.data
Interface Container.ItemSetChangeListener
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractSelect
,ComboBox
,ContainerEventProvider
,ListSelect
,NativeSelect
,OptionGroup
,Select
,Table
,Tree
,TreeTable
,TwinColSelect
- Enclosing interface:
- Container
public static interface Container.ItemSetChangeListener extends Serializable
Container Item set change listener interface.An item set change refers to addition, removal or reordering of items in the container. A simple property value change is not an item set change.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
containerItemSetChange(Container.ItemSetChangeEvent event)
Lets the listener know a Containers visible (filtered and/or sorted, if applicable) Item set has changed.
-
-
-
Method Detail
-
containerItemSetChange
void containerItemSetChange(Container.ItemSetChangeEvent event)
Lets the listener know a Containers visible (filtered and/or sorted, if applicable) Item set has changed.- Parameters:
event
- change event text
-
-