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.ui.components.grid.
Interface SourceDataProviderUpdater<T>
-
Type Parameters:
T
- the bean typeAll Superinterfaces:
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface SourceDataProviderUpdater<T> extends Serializable
A handler for source grid data provider updater for
GridRowDragger
. Used to handle updates to the source grid'sDataProvider
after a drop.Since:
8.2
Author:
Vaadin Ltd
-
-
Field Summary
Fields Modifier and Type Field Description static SourceDataProviderUpdater
NOOP
A NOOP updater that does not do anything for the source data provider.
-
Method Summary
All Methods Modifier and Type Method Description void
removeItems(DropEffect dropEffect, DataProvider<T,?> dataProvider, Collection<T> items)
Called when Items have been dragged.
-
-
-
Field Detail
-
NOOP
static final SourceDataProviderUpdater NOOP
A NOOP updater that does not do anything for the source data provider.
-
-
Method Detail
-
removeItems
void removeItems(DropEffect dropEffect, DataProvider<T,?> dataProvider, Collection<T> items)
Called when Items have been dragged.
Parameters:
dropEffect
- the reported drop effect from the drop eventdataProvider
- the data provider for the source griditems
- dragged items.
-
-