Uses of Interface
com.vaadin.data.Container
-
Packages that use Container 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.data.util.sqlcontainer com.vaadin.event com.vaadin.ui -
-
Uses of Container in com.vaadin.data
Subinterfaces of Container in com.vaadin.data Modifier and Type Interface Description interfaceCollapsibleContainer needed by large lazy loading hierarchies displayed e.g.static interfaceContainer.FilterableInterface that is implemented by containers which allow reducing their visible contents based on a set of filters.static interfaceContainer.HierarchicalInterface forContainerclasses whose Items can be arranged hierarchically.static interfaceContainer.IndexedInterface for Container classes whoseItems can be accessed by their position in the container.static interfaceContainer.OrderedInterface for Container classes whoseItems can be traversed in order.static interfaceContainer.SimpleFilterableInterface that is implemented by containers which allow reducing their visible contents based on a set of filters.static interfaceContainer.SortableInterface for Container classes whoseItems can be sorted.Methods in com.vaadin.data that return Container Modifier and Type Method Description ContainerContainer.ItemSetChangeEvent. getContainer()Gets the Property where the event occurred.ContainerContainer.PropertySetChangeEvent. getContainer()Retrieves the Container whose contents have been modified.ContainerContainer.Viewer. getContainerDataSource()Gets the Container serving as the data source of the viewer.Methods in com.vaadin.data with parameters of type Container Modifier and Type Method Description voidContainer.Viewer. setContainerDataSource(Container newDataSource)Sets the Container that serves as the data source of the viewer. -
Uses of Container in com.vaadin.data.util
Classes in com.vaadin.data.util that implement Container Modifier and Type Class Description classAbstractBeanContainer<IDTYPE,BEANTYPE>An abstract base class for in-memory containers for JavaBeans.classAbstractContainerAbstract container class that manages event listeners and sending events to them (Container.PropertySetChangeNotifier,Container.ItemSetChangeNotifier).classAbstractInMemoryContainer<ITEMIDTYPE,PROPERTYIDCLASS,ITEMCLASS extends Item>AbstractContainerclass that handles common functionality for in-memory containers.classBeanContainer<IDTYPE,BEANTYPE>An in-memory container for JavaBeans.classBeanItemContainer<BEANTYPE>An in-memory container for JavaBeans.classContainerHierarchicalWrapperA wrapper class for adding external hierarchy to containers not implementing theContainer.Hierarchicalinterface.classContainerOrderedWrapperA wrapper class for adding external ordering to containers not implementing theContainer.Orderedinterface.classFilesystemContainerA hierarchical container wrapper for a filesystem.classGeneratedPropertyContainerContainer wrapper that adds support for generated properties.classHierarchicalContainerA specialized Container whose contents can be accessed like it was a tree-like structure.classHierarchicalContainerOrderedWrapperA wrapper class for adding external ordering to containers not implementing theContainer.Orderedinterface while retainingContainer.Hierarchicalfeatures.classIndexedContainerAn implementation of theinterface with all important features.Container.IndexedMethods in com.vaadin.data.util that return Container Modifier and Type Method Description ContainerAbstractContainer.BaseItemSetChangeEvent. getContainer()ContainerAbstractContainer.BasePropertySetChangeEvent. getContainer()ContainerGeneratedPropertyContainer.GeneratedItemAddOrRemoveEvent. getContainer()Constructors in com.vaadin.data.util with parameters of type Container Constructor Description BaseItemAddEvent(Container source, Object itemId, int index, int count)BaseItemRemoveEvent(Container source, Object itemId, int index, int count)BaseItemSetChangeEvent(Container source)BasePropertySetChangeEvent(Container source)ContainerHierarchicalWrapper(Container toBeWrapped)Constructs a new hierarchical wrapper for an existing Container.ContainerOrderedWrapper(Container toBeWrapped)Constructs a new ordered wrapper for an existing Container. -
Uses of Container in com.vaadin.data.util.sqlcontainer
Classes in com.vaadin.data.util.sqlcontainer that implement Container Modifier and Type Class Description classSQLContainerMethods in com.vaadin.data.util.sqlcontainer that return Container Modifier and Type Method Description ContainerSQLContainer.ItemSetChangeEvent. getContainer() -
Uses of Container in com.vaadin.event
Methods in com.vaadin.event that return Container Modifier and Type Method Description ContainerDataBoundTransferable. getSourceContainer()Returns the container data source from which the transfer occurs. -
Uses of Container in com.vaadin.ui
Classes in com.vaadin.ui that implement Container 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.Fields in com.vaadin.ui declared as Container Modifier and Type Field Description protected ContainerAbstractSelect. itemsSelect options.Methods in com.vaadin.ui that return Container Modifier and Type Method Description ContainerAbstractSelect. getContainerDataSource()Gets the viewing data-source container.Methods in com.vaadin.ui with parameters of type Container Modifier and Type Method Description FieldDefaultFieldFactory. createField(Container container, Object itemId, Object propertyId, Component uiContext)Field<?>TableFieldFactory. createField(Container container, Object itemId, Object propertyId, Component uiContext)Creates a field based on the Container, item id, property id and the component responsible for displaying the field (most commonlyTable).voidAbstractSelect. setContainerDataSource(Container newDataSource)Sets the Container that serves as the data source of the viewer.voidTable. setContainerDataSource(Container newDataSource)Sets the Container that serves as the data source of the viewer.voidTable. setContainerDataSource(Container newDataSource, Collection<?> visibleIds)Sets the container data source and the columns that will be visible.voidTree. setContainerDataSource(Container newDataSource)Sets the Container that serves as the data source of the viewer.voidTreeTable. setContainerDataSource(Container newDataSource)Constructors in com.vaadin.ui with parameters of type Container Constructor Description AbstractSelect(String caption, Container dataSource)Creates a new select that is connected to a data-source.ComboBox(String caption, Container dataSource)ListSelect(String caption, Container dataSource)NativeSelect(String caption, Container dataSource)OptionGroup(String caption, Container dataSource)Select(String caption, Container dataSource)Deprecated.Table(String caption, Container dataSource)Creates a new table with caption and connect it to a Container.Tree(String caption, Container dataSource)Creates a new tree with caption and connect it to a Container.TreeTable(String caption, Container dataSource)Creates a TreeTable instance with given captions and data source.TwinColSelect(String caption, Container dataSource)
-