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.navigator.
Interface View
-
All Superinterfaces:
All Known Implementing Classes:
public interface View extends Serializable
Interface for all views controlled by the navigator. Each view added to the navigator must implement this interface. Typically, a view is a
Component
.Since:
7.0
Author:
Vaadin Ltd
-
-
Method Summary
All Methods Modifier and Type Method Description void
enter(ViewChangeListener.ViewChangeEvent event)
This view is navigated to.
-
-
-
Method Detail
-
enter
void enter(ViewChangeListener.ViewChangeEvent event)
This view is navigated to. This method is always called before the view is shown on screen.
event.getParameters()
may contain extra parameters relevant to the view.Parameters:
event
- ViewChangeEvent representing the view change that is occurring.event.getNewView()
returnsthis
.
-
-