com.vaadin.flow.data.binder.

Interface HasDataProvider<T>

    • Method Detail

      • setDataProvider

        void setDataProvider(DataProvider<T,?> dataProvider)

        Sets the data provider for this listing. The data provider is queried for displayed items as needed.

        Parameters:

        dataProvider - the data provider, not null

      • setItems

        default void setItems(Collection<T> items)

        Description copied from interface: HasItems

        Sets the data items of this component provided as a collection.

        The provided collection instance may be used as-is. Subsequent modification of the collection might cause inconsistent data to be shown in the component unless it is explicitly instructed to read the data again.

        Specified by:

        setItems in interface HasItems<T>

        Parameters:

        items - the data items to display, not null