Uses of Interface
com.vaadin.data.Container.PropertySetChangeListener
-
Packages that use Container.PropertySetChangeListener Package Description com.vaadin.data Contains interfaces for the data layer, mainly for binding typed data and data collections to components, and for validating data.com.vaadin.data.util Provides implementations of Property, Item and Container interfaces, and utilities for the data layer.com.vaadin.ui -
-
Uses of Container.PropertySetChangeListener in com.vaadin.data
Methods in com.vaadin.data with parameters of type Container.PropertySetChangeListener Modifier and Type Method Description voidContainer.PropertySetChangeNotifier. addListener(Container.PropertySetChangeListener listener)Deprecated.As of 7.0, replaced byContainer.PropertySetChangeNotifier.addPropertySetChangeListener(PropertySetChangeListener)voidContainer.PropertySetChangeNotifier. addPropertySetChangeListener(Container.PropertySetChangeListener listener)Registers a new Property set change listener for this Container.voidContainer.PropertySetChangeNotifier. removeListener(Container.PropertySetChangeListener listener)Deprecated.voidContainer.PropertySetChangeNotifier. removePropertySetChangeListener(Container.PropertySetChangeListener listener)Removes a previously registered Property set change listener. -
Uses of Container.PropertySetChangeListener in com.vaadin.data.util
Methods in com.vaadin.data.util that return types with arguments of type Container.PropertySetChangeListener Modifier and Type Method Description protected Collection<Container.PropertySetChangeListener>AbstractContainer. getPropertySetChangeListeners()Returns the property set change listener collection.Method parameters in com.vaadin.data.util with type arguments of type Container.PropertySetChangeListener Modifier and Type Method Description protected voidAbstractContainer. setPropertySetChangeListeners(Collection<Container.PropertySetChangeListener> propertySetChangeListeners)Sets the property set change listener collection. -
Uses of Container.PropertySetChangeListener in com.vaadin.ui
Classes in com.vaadin.ui that implement Container.PropertySetChangeListener Modifier and Type Class Description classAbstractSelectA class representing a selection of items the user has selected in a UI.classComboBoxA filtering dropdown single-select.classListSelectThis is a simple list select without, for instance, support for new items, lazyloading, and other advanced features.classNativeSelectThis is a simple drop-down select without, for instance, support for multiselect, new items, lazyloading, and other advanced features.classOptionGroupConfigures select to be used as an option group.classSelectDeprecated.As of 7.0.classTableTableis used for representing data or components in a pageable and selectable table.classTreeTree component.classTreeTableclassTwinColSelectMultiselect component with two lists: left side for available items and right side for selected items.Methods in com.vaadin.ui with parameters of type Container.PropertySetChangeListener Modifier and Type Method Description voidAbstractSelect. addListener(Container.PropertySetChangeListener listener)Deprecated.As of 7.0, replaced byAbstractSelect.addPropertySetChangeListener(Container.PropertySetChangeListener)voidAbstractSelect. addPropertySetChangeListener(Container.PropertySetChangeListener listener)Adds a new Property set change listener for this Container.voidAbstractSelect. removeListener(Container.PropertySetChangeListener listener)Deprecated.As of 7.0, replaced byAbstractSelect.removePropertySetChangeListener(Container.PropertySetChangeListener)voidAbstractSelect. removePropertySetChangeListener(Container.PropertySetChangeListener listener)Removes a previously registered Property set change listener.
-