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 Item.Viewer
-
All Superinterfaces:
All Known Subinterfaces:
All Known Implementing Classes:
Enclosing interface:
public static interface Item.Viewer extends Serializable
Interface implemented by viewer classes capable of using an Item as a data source.
-
-
Method Summary
All Methods Modifier and Type Method and Description Item
getItemDataSource()
Gets the Item serving as the data source of the viewer.
void
setItemDataSource(Item newDataSource)
Sets the Item that serves as the data source of the viewer.
-
-
-
Method Detail
-
setItemDataSource
void setItemDataSource(Item newDataSource)
Sets the Item that serves as the data source of the viewer.
Parameters:
newDataSource
- The new data source Item
-
getItemDataSource
Item getItemDataSource()
Gets the Item serving as the data source of the viewer.
Returns:
data source Item
-
-