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.widget.escalator.
Interface SpacerUpdater
-
public interface SpacerUpdater
An interface that handles the display of content for spacers.
The updater is responsible for making sure all elements are properly constructed and cleaned up.
Since:
7.5.0
Author:
Vaadin Ltd
See Also:
-
-
Field Summary
Fields Modifier and Type Field Description static SpacerUpdater
NULL
A spacer updater that does nothing.
-
-
-
Field Detail
-
NULL
static final SpacerUpdater NULL
A spacer updater that does nothing.
-
-
Method Detail
-
init
void init(Spacer spacer)
Called whenever a spacer should be initialized with content.
Parameters:
spacer
- the spacer reference that should be initialized
-
destroy
void destroy(Spacer spacer)
Called whenever a spacer should be cleaned.
The structure to clean up is the same that has been constructed by
init(Spacer)
.Parameters:
spacer
- the spacer reference that should be destroyed
-
-