Uses of Interface
com.vaadin.navigator.View
-
Packages that use View Package Description com.vaadin.navigator -
-
Uses of View in com.vaadin.navigator
Classes in com.vaadin.navigator that implement View Modifier and Type Class Description static class
Navigator.EmptyView
Empty view component.Methods in com.vaadin.navigator that return View Modifier and Type Method Description View
Navigator. getCurrentView()
Return the currently active view.View
ViewChangeListener.ViewChangeEvent. getNewView()
Returns the view being activated.View
ViewChangeListener.ViewChangeEvent. getOldView()
Returns the view being deactivated.View
Navigator.ClassBasedViewProvider. getView(String viewName)
View
Navigator.StaticViewProvider. getView(String viewName)
View
ViewProvider. getView(String viewName)
Create or return a pre-created instance of a view.Methods in com.vaadin.navigator that return types with arguments of type View Modifier and Type Method Description Class<? extends View>
Navigator.ClassBasedViewProvider. getViewClass()
Get the view class for this provider.Methods in com.vaadin.navigator with parameters of type View Modifier and Type Method Description void
Navigator. addView(String viewName, View view)
Registers a static, pre-initialized view instance for a view name.protected void
Navigator. navigateTo(View view, String viewName, String parameters)
Internal method activating a view, setting its parameters and calling listeners.void
Navigator. setErrorView(View view)
Registers a view that is displayed when no other view matches the navigation state.void
Navigator.ComponentContainerViewDisplay. showView(View view)
void
Navigator.SingleComponentContainerViewDisplay. showView(View view)
void
ViewDisplay. showView(View view)
Remove previously shown view and show the newly selected view in its place.Method parameters in com.vaadin.navigator with type arguments of type View Modifier and Type Method Description void
Navigator. addView(String viewName, Class<? extends View> viewClass)
Registers a view class for a view name.void
Navigator. setErrorView(Class<? extends View> viewClass)
Registers a view class that is instantiated when no other view matches the navigation state.Constructors in com.vaadin.navigator with parameters of type View Constructor Description StaticViewProvider(String viewName, View view)
Creates a new view provider which returns a pre-created view instance.ViewChangeEvent(Navigator navigator, View oldView, View newView, String viewName, String parameters)
Create a new view change event.Constructor parameters in com.vaadin.navigator with type arguments of type View Constructor Description ClassBasedViewProvider(String viewName, Class<? extends View> viewClass)
Create a new view provider which creates new view instances based on a view class.
-