Interface | Description |
---|---|
NavigatingContainer |
Implemented by navigation containers that changes its content between Page
transitions.
|
PageRole |
Marker interface to indicate that this a page role.
|
UniquePageRole |
Marker interface to indicate that this role is Unique.
|
Class | Description |
---|---|
DefaultNavigatingContainer |
Uses SimplePanel as a navigating container.
|
DefaultNavigationErrorHandler |
Implements default error handling behavior for page navigation.
|
DefaultPage |
Unique role to indicate that this page is the default start page.
|
HistoryToken |
Represents the "history token" part of the location: the Errai UI Navigation page name plus the names and values of
its state parameters.
|
HistoryTokenFactory |
All HistoryToken instances are produced by this class.
|
HistoryWrapper |
Dispatches to either
HistoryImplPushState or GWT's default
History . |
Navigation |
Central control point for navigating between pages of the application.
|
NavigationPanel |
This class exists to make the default navigation panel injectable without
requiring a qualifier.
|
NavigationPanelProvider |
IOCProvider to make the default navigation panel injectable. |
PageTransitionProvider | |
TransitionAnchor<P extends com.google.gwt.user.client.ui.IsWidget> |
Represents an anchor widget that, when clicked, will navigate the user
to another page in the application's flow.
|
TransitionAnchorFactory<P extends com.google.gwt.user.client.ui.IsWidget> |
A factory for creating
TransitionAnchor instances. |
TransitionAnchorFactoryProvider |
Provides new instances of the
TransitionAnchorFactory class, which
allows them to be injected. |
TransitionAnchorProvider |
Provides new instances of the
TransitionAnchor widget class, which
allows them to be injected. |
TransitionTo<P extends com.google.gwt.user.client.ui.IsWidget> |
Represents navigability from one page to another in the application's flow.
|
TransitionToRole<U extends UniquePageRole> |
This class works like a
TransitionTo but where the target is a UniquePageRole . |
TransitionToRoleProvider | |
URLPattern |
Used to extract page state values from the URL path.
|
URLPatternMatcher |
Used to match URLs typed in by the user to the correct
Page.path() |
URLPatternMatcherProvider |
This class is responsible for initializing and providing the
URLPatternMatcher for the app. |
Annotation Type | Description |
---|---|
Page |
Declares that the target type,
which must be a subtype of Widget or an implementation of IsWidget,
is a named page with optional state information within the Errai Navigation
system.
|
PageHidden |
Indicates that the target method should be called after the
@Page
widget it belongs has been removed from the navigation content
panel. |
PageHiding |
Indicates that the target method should be called when the
@Page widget it belongs to is
about to be removed from the navigation content panel. |
PageShowing |
Indicates that the target method should be called when the
@Page
widget it is a member of is about to be displayed in the navigation content
panel: after the widget's @PageState fields have been updated and
before it is displayed in the navigation content panel. |
PageShown |
Indicates that the target method should be called when the
@Page
widget it is a member of was displayed in the navigation content panel:
after the widget's @PageState fields have been updated and
before it is displayed in the navigation content panel. |
PageState |
Indicates that the annotated field holds information about the state of the
current page.
|
Copyright © 2013-2015 JBoss, a division of Red Hat. All Rights Reserved.