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.client.connectors.data.
Interface HasDataSource
-
All Known Implementing Classes:
AbstractFocusableListingConnector
,AbstractListingConnector
,AbstractMultiSelectConnector
,AbstractSingleSelectConnector
,CheckBoxGroupConnector
,ComboBoxConnector
,GridConnector
,ListSelectConnector
,NativeSelectConnector
,RadioButtonGroupConnector
,TreeGridConnector
,TwinColSelectConnector
public interface HasDataSource
A marker interface for connectors that have a data source.
Since:
8.0
Author:
Vaadin Ltd.
See Also:
-
-
Method Summary
All Methods Modifier and Type Method Description DataSource<elemental.json.JsonObject>
getDataSource()
Gets the current data source for this Connector.
void
setDataSource(DataSource<elemental.json.JsonObject> dataSource)
Sets the data source for this Connector.
-
-
-
Method Detail
-
setDataSource
void setDataSource(DataSource<elemental.json.JsonObject> dataSource)
Sets the data source for this Connector.
Parameters:
dataSource
- the new data source, not null
-
getDataSource
DataSource<elemental.json.JsonObject> getDataSource()
Gets the current data source for this Connector.
Returns:
the data source, not null
-
-