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.flow.router.
Class AfterNavigationEvent
- java.lang.Object
-
- java.util.EventObject
-
- com.vaadin.flow.router.AfterNavigationEvent
-
All Implemented Interfaces:
public class AfterNavigationEvent extends EventObject
Event created before navigation happens.
Since:
1.0
Author:
Vaadin Ltd
See Also:
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor and Description AfterNavigationEvent(LocationChangeEvent event)
Construct event from a NavigationEvent.
-
Method Summary
All Methods Modifier and Type Method and Description List<HasElement>
getActiveChain()
Get the active chain that we have after navigation.
Location
getLocation()
Gets the new location.
Router
getSource()
-
Methods inherited from class java.util.EventObject
toString
-
-
-
-
Constructor Detail
-
AfterNavigationEvent
public AfterNavigationEvent(LocationChangeEvent event)
Construct event from a NavigationEvent.
Parameters:
event
- NavigationEvent that is on going
-
-
Method Detail
-
getLocation
public Location getLocation()
Gets the new location.
Returns:
the new location, not
null
-
getActiveChain
public List<HasElement> getActiveChain()
Get the active chain that we have after navigation.
Returns:
unmodifiable list of active view chain
-
getSource
public Router getSource()
Overrides:
getSource
in classEventObject
-
-