| Method and Description |
|---|
| com.vaadin.flow.component.listbox.ListBoxBase.getDataProvider()
use
ListBoxBase.getListDataView() or
ListBoxBase.getGenericDataView() instead |
| com.vaadin.flow.component.listbox.ListBoxBase.setDataProvider(DataProvider<ITEM, ?>)
use instead one of the
setItems methods which provide
access to either ListBoxListDataView or
ListBoxDataView |
| com.vaadin.flow.component.listbox.ListBoxBase.setItems(Stream<ITEM>)
Because the stream is collected to a list anyway, use
HasListDataView.setItems(Collection) instead. |
Copyright © 2021. All rights reserved.