We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.data.
Interface Container.PropertySetChangeListener
-
All Superinterfaces:
All Known Implementing Classes:
AbstractSelect, ComboBox, ListSelect, NativeSelect, OptionGroup, Select, Table, Tree, TreeTable, TwinColSelect
Enclosing interface:
public static interface Container.PropertySetChangeListener extends Serializable
The listener interface for receiving
PropertySetChangeEvent
objects.A property set change means the addition, removal or other structural change of the properties (supported property IDs) of a container. Changes concerning the set of items in the container and their property values are not property set changes.
-
-
Method Summary
All Methods Modifier and Type Method and Description void
containerPropertySetChange(Container.PropertySetChangeEvent event)
Notifies this listener that the set of property IDs supported by the Container has changed.
-
-
-
Method Detail
-
containerPropertySetChange
void containerPropertySetChange(Container.PropertySetChangeEvent event)
Notifies this listener that the set of property IDs supported by the Container has changed.
Parameters:
event
- Change event.
-
-