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 classNavigator.EmptyViewEmpty view component.Methods in com.vaadin.navigator that return View Modifier and Type Method Description ViewNavigator. getCurrentView()Return the currently active view.ViewViewChangeListener.ViewChangeEvent. getNewView()Returns the view being activated.ViewViewChangeListener.ViewChangeEvent. getOldView()Returns the view being deactivated.ViewNavigator.ClassBasedViewProvider. getView(String viewName)ViewNavigator.StaticViewProvider. getView(String viewName)ViewViewProvider. 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 voidNavigator. addView(String viewName, View view)Registers a static, pre-initialized view instance for a view name.protected voidNavigator. navigateTo(View view, String viewName, String parameters)Internal method activating a view, setting its parameters and calling listeners.voidNavigator. setErrorView(View view)Registers a view that is displayed when no other view matches the navigation state.voidNavigator.ComponentContainerViewDisplay. showView(View view)voidNavigator.SingleComponentContainerViewDisplay. showView(View view)voidViewDisplay. 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 voidNavigator. addView(String viewName, Class<? extends View> viewClass)Registers a view class for a view name.voidNavigator. 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.
-