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.Viewer
-
All Superinterfaces:
All Known Subinterfaces:
All Known Implementing Classes:
AbstractSelect, ComboBox, ListSelect, NativeSelect, OptionGroup, Select, Table, Tree, TreeTable, TwinColSelect
Enclosing interface:
public static interface Container.Viewer extends Serializable
Interface implemented by viewer classes capable of using a Container as a data source.
-
-
Method Summary
All Methods Modifier and Type Method and Description Container
getContainerDataSource()
Gets the Container serving as the data source of the viewer.
void
setContainerDataSource(Container newDataSource)
Sets the Container that serves as the data source of the viewer.
-
-
-
Method Detail
-
setContainerDataSource
void setContainerDataSource(Container newDataSource)
Sets the Container that serves as the data source of the viewer.
Parameters:
newDataSource
- The new data source Item
-
getContainerDataSource
Container getContainerDataSource()
Gets the Container serving as the data source of the viewer.
Returns:
data source Container
-
-