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.client.data.
Interface HierarchicalDataChangeHandler
-
All Superinterfaces:
public interface HierarchicalDataChangeHandler extends DataChangeHandler
FOR INTERNAL USE ONLY. This might be removed or renamed at any time without a warning. Callback interface used by
DataSource
to inform its user about updates to hierarchical data.Since:
8.17
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method Description void
setExpandCollapsePending​(boolean pending)
FOR INTERNAL USE ONLY.
-
Methods inherited from interface com.vaadin.client.data.DataChangeHandler
dataAdded, dataAvailable, dataRemoved, dataUpdated, resetDataAndSize
-
-
-
-
Method Detail
-
setExpandCollapsePending
void setExpandCollapsePending​(boolean pending)
FOR INTERNAL USE ONLY. This might be removed or renamed at any time without a warning. Called when an expand or collapse event or several are about to arrive from the server, and when all expand or collapse events for this round trip have been sent from the server.
Parameters:
pending
-true
before the updates,false
when all the updates are done
-
-