You're viewing an older version of Vaadin JavaDoc. Please see version 24.7.0 for the latest.
com.vaadin.flow.data.binder.

Interface HasDataProvider<T>

    • Method Summary

      All Methods
      Modifier and Type Method Description
      void setDataProvider​(DataProvider<T,​?> dataProvider)

      Sets the data provider for this listing.

      default void setItems​(Collection<T> items)

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

    • 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