Uses of Interface
org.vaadin.firitin.components.Tree.ChildrenProvider
-
Uses of Tree.ChildrenProvider in org.vaadin.firitin.components
Modifier and TypeMethodDescriptionprotected void
Tree.fillTree
(Tree.ChildrenProvider<T> childrenProvider, T item, TreeItem treeItem) protected void
Tree.fillWithProviders
(int level, T item, TreeItem treeItem, Tree.ChildrenProvider... providers) void
Tree.setItems
(com.vaadin.flow.data.provider.hierarchy.TreeData<T> treeData, Tree.ChildrenProvider<T> childrenProvider) Deprecated.Helper to move from TreeGrid usage, in case the TreeData (from Vaadin core) happens to be used to describe the hierarchy.void
Tree.setItems
(List<? extends T> roots, Tree.ChildrenProvider<? extends T>... providersForNextLevels) Sets root items with multiple children providers used to fetch sub-sequent levels.void
Tree.setItems
(List<? extends T> rootNodes, Tree.ChildrenProvider<T> childrenProvider) Sets the root nodes for the tree with a strategy to fetch children for items (recursively).void
Tree.setItems
(T root, Tree.ChildrenProvider<? extends T>... providersForNextLevels) Sets root item with multiple children providers used to fetch sub-sequent levels.void
Tree.setItems
(T rootNode, Tree.ChildrenProvider<T> childrenProvider) Sets the root node for the tree with a strategy to fetch children for items (recursively).