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.server.
Interface Page.UriFragmentChangedListener
-
All Superinterfaces:
All Known Implementing Classes:
Enclosing class:
public static interface Page.UriFragmentChangedListener extends Serializable
Listener that that gets notified when the URI fragment of the page changes.
-
-
Method Summary
All Methods Modifier and Type Method and Description void
uriFragmentChanged(Page.UriFragmentChangedEvent event)
Event handler method invoked when the URI fragment of the page changes.
-
-
-
Method Detail
-
uriFragmentChanged
void uriFragmentChanged(Page.UriFragmentChangedEvent event)
Event handler method invoked when the URI fragment of the page changes. Please note that the initial URI fragment has already been set when a new UI is initialized, so there will not be any initial event for listeners added during
UI.init(VaadinRequest)
.Parameters:
event
- the URI fragment changed eventSee Also:
Page.addUriFragmentChangedListener(UriFragmentChangedListener)
-
-