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.provider.
Class DataChangeEvent.DataRefreshEvent<T>
- java.lang.Object
-
- java.util.EventObject
-
- com.vaadin.data.provider.DataChangeEvent<T>
-
- com.vaadin.data.provider.DataChangeEvent.DataRefreshEvent<T>
-
Type Parameters:
T
- the data typeAll Implemented Interfaces:
Enclosing class:
public static class DataChangeEvent.DataRefreshEvent<T> extends DataChangeEvent<T>
An event fired when a single item of a
DataProvider
has been updated.See Also:
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.vaadin.data.provider.DataChangeEvent
DataChangeEvent.DataRefreshEvent<T>
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description DataRefreshEvent(DataProvider<T,?> source, T item)
Creates a new data refresh event originating from the given data provider.
-
Method Summary
All Methods Modifier and Type Method Description T
getItem()
Gets the refreshed item.
-
Methods inherited from class com.vaadin.data.provider.DataChangeEvent
getSource
-
Methods inherited from class java.util.EventObject
toString
-
-
-
-
Constructor Detail
-
DataRefreshEvent
public DataRefreshEvent(DataProvider<T,?> source, T item)
Creates a new data refresh event originating from the given data provider.
Parameters:
source
- the data provider, not nullitem
- the updated item, not null
-
-
Method Detail
-
getItem
public T getItem()
Gets the refreshed item.
Returns:
the refreshed item
-
-