|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use View | |
---|---|
com.vaadin.navigator |
Uses of View in com.vaadin.navigator |
---|
Classes in com.vaadin.navigator that implement View | |
---|---|
static class |
Navigator.EmptyView
Empty view component. |
Methods in com.vaadin.navigator that return View | |
---|---|
View |
ViewChangeListener.ViewChangeEvent.getNewView()
Returns the view being activated. |
View |
ViewChangeListener.ViewChangeEvent.getOldView()
Returns the view being deactivated. |
View |
Navigator.StaticViewProvider.getView(java.lang.String viewName)
|
View |
Navigator.ClassBasedViewProvider.getView(java.lang.String viewName)
|
View |
ViewProvider.getView(java.lang.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 | |
---|---|
java.lang.Class<? extends View> |
Navigator.ClassBasedViewProvider.getViewClass()
Get the view class for this provider. |
Methods in com.vaadin.navigator with parameters of type View | |
---|---|
void |
Navigator.addView(java.lang.String viewName,
View view)
Registers a static, pre-initialized view instance for a view name. |
protected void |
Navigator.navigateTo(View view,
java.lang.String viewName,
java.lang.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 | |
---|---|
void |
Navigator.addView(java.lang.String viewName,
java.lang.Class<? extends View> viewClass)
Registers a view class for a view name. |
void |
Navigator.setErrorView(java.lang.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 | |
---|---|
Navigator.StaticViewProvider(java.lang.String viewName,
View view)
Creates a new view provider which returns a pre-created view instance. |
|
ViewChangeListener.ViewChangeEvent(Navigator navigator,
View oldView,
View newView,
java.lang.String viewName,
java.lang.String parameters)
Create a new view change event. |
Constructor parameters in com.vaadin.navigator with type arguments of type View | |
---|---|
Navigator.ClassBasedViewProvider(java.lang.String viewName,
java.lang.Class<? extends View> viewClass)
Create a new view provider which creates new view instances based on a view class. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |