Package | Description |
---|---|
com.gwtplatform.mvp.client | |
com.gwtplatform.mvp.client.proxy | |
com.gwtplatform.mvp.shared.proxy |
Modifier and Type | Method and Description |
---|---|
void |
Presenter.prepareFromRequest(PlaceRequest request)
Prepare the state of the presenter given the information contained in
the
PlaceRequest . |
Modifier and Type | Method and Description |
---|---|
PlaceRequest |
PlaceManagerImpl.getCurrentPlaceRequest() |
PlaceRequest |
PlaceManager.getCurrentPlaceRequest()
Access the current place request, that is, the tail of the place request hierarchy.
|
PlaceRequest |
NavigationEvent.getRequest()
Access the
PlaceRequest that triggered that navigation event. |
PlaceRequest |
GetPlaceTitleEvent.getRequest() |
Modifier and Type | Method and Description |
---|---|
List<PlaceRequest> |
PlaceManagerImpl.getCurrentPlaceHierarchy() |
List<PlaceRequest> |
PlaceManager.getCurrentPlaceHierarchy()
Access the current place hierarchy, with the current
PlaceRequest being the last
element of this list. |
Modifier and Type | Method and Description |
---|---|
String |
PlaceManagerImpl.buildHistoryToken(PlaceRequest request) |
String |
PlaceManager.buildHistoryToken(PlaceRequest request)
Builds a string corresponding to the history token to reveal the specified
PlaceRequest . |
String |
PlaceManagerImpl.buildRelativeHistoryToken(PlaceRequest request) |
String |
PlaceManager.buildRelativeHistoryToken(PlaceRequest request)
Builds a string corresponding to the history token to reveal the specified
PlaceRequest
as a child of the current place hierarchy. |
String |
PlaceManagerImpl.buildRelativeHistoryToken(PlaceRequest request,
int level) |
String |
PlaceManager.buildRelativeHistoryToken(PlaceRequest request,
int level)
Builds a string corresponding to the history token to reveal the specified
PlaceRequest
relative to the other places in the current place hierarchy. |
protected void |
PlaceManagerImpl.doRevealPlace(PlaceRequest request,
boolean updateBrowserUrl)
Fires the
PlaceRequestInternalEvent for the given
PlaceRequest . |
static void |
NavigationEvent.fire(HasHandlers source,
PlaceRequest request)
Fires a
NavigationEvent
into a source that has access to an EventBus . |
static void |
GetPlaceTitleEvent.fire(HasHandlers source,
PlaceRequest request,
SetPlaceTitleHandler handler)
Fires a
GetPlaceTitleEvent
into a source that has access to an EventBus . |
boolean |
ProxyPlaceAbstract.matchesRequest(PlaceRequest request) |
boolean |
PlaceImpl.matchesRequest(PlaceRequest request) |
boolean |
Place.matchesRequest(PlaceRequest request)
Makes sure the method matches the passed request.
|
void |
PlaceManagerImpl.revealPlace(PlaceRequest request) |
void |
PlaceManager.revealPlace(PlaceRequest request)
Programmatically reveals the specified place, updating the browser URL in the process.
|
void |
PlaceManagerImpl.revealPlace(PlaceRequest request,
boolean updateBrowserUrl) |
void |
PlaceManager.revealPlace(PlaceRequest request,
boolean updateBrowserUrl)
Programmatically reveals the specified place.
|
void |
PlaceManagerImpl.revealRelativePlace(PlaceRequest request) |
void |
PlaceManager.revealRelativePlace(PlaceRequest request)
Programmatically reveals the specified place as a child of the current place hierarchy.
|
void |
PlaceManagerImpl.revealRelativePlace(PlaceRequest request,
int level) |
void |
PlaceManager.revealRelativePlace(PlaceRequest request,
int level)
Programmatically reveals the specified place relative to the other places in the current place
hierarchy.
|
void |
PlaceManagerImpl.updateHistory(PlaceRequest request,
boolean updateBrowserUrl) |
void |
PlaceManager.updateHistory(PlaceRequest request,
boolean updateBrowserUrl)
Updates History without firing a
ValueChangeEvent . |
Modifier and Type | Method and Description |
---|---|
void |
PlaceManagerImpl.revealPlaceHierarchy(List<PlaceRequest> placeRequestHierarchy) |
void |
PlaceManager.revealPlaceHierarchy(List<PlaceRequest> placeRequestHierarchy)
Programmatically reveals the specified hierarchy of places place, updating the browser URL in
the process.
|
Constructor and Description |
---|
GetPlaceTitleEvent(PlaceRequest request,
SetPlaceTitleHandler handler) |
NavigationEvent(PlaceRequest request)
Create a navigation event and attach it to a place request.
|
Modifier and Type | Method and Description |
---|---|
PlaceRequest |
PlaceRequest.Builder.build() |
PlaceRequest |
TokenFormatter.toPlaceRequest(String placeToken)
Converts a place token into a
PlaceRequest . |
PlaceRequest |
RouteTokenFormatter.toPlaceRequest(String placeToken) |
PlaceRequest |
ParameterTokenFormatter.toPlaceRequest(String placeToken) |
PlaceRequest |
PlaceRequest.with(String name,
String value)
Deprecated.
Please use
PlaceRequest.Builder.with(String, String)
instead |
Modifier and Type | Method and Description |
---|---|
List<PlaceRequest> |
TokenFormatter.toPlaceRequestHierarchy(String historyToken)
Converts a history token into a place request hierarchy (a list of
PlaceRequest ). |
List<PlaceRequest> |
RouteTokenFormatter.toPlaceRequestHierarchy(String historyToken) |
List<PlaceRequest> |
ParameterTokenFormatter.toPlaceRequestHierarchy(String historyToken) |
Modifier and Type | Method and Description |
---|---|
boolean |
PlaceRequest.hasSameNameToken(PlaceRequest other)
Checks if this place request has the same name token as the one passed in.
|
String |
TokenFormatter.toPlaceToken(PlaceRequest placeRequest)
Converts a
PlaceRequest into a place token. |
String |
RouteTokenFormatter.toPlaceToken(PlaceRequest placeRequest) |
String |
ParameterTokenFormatter.toPlaceToken(PlaceRequest placeRequest) |
Modifier and Type | Method and Description |
---|---|
String |
TokenFormatter.toHistoryToken(List<PlaceRequest> placeRequestHierarchy)
Converts a place request hierarchy (a list of
PlaceRequest ) into a history token. |
String |
RouteTokenFormatter.toHistoryToken(List<PlaceRequest> placeRequestHierarchy) |
String |
ParameterTokenFormatter.toHistoryToken(List<PlaceRequest> placeRequestHierarchy) |
Constructor and Description |
---|
PlaceRequest.Builder(PlaceRequest request)
'Copy' constructor for initializing a new
PlaceRequest.Builder with data from an existing
PlaceRequest , e.g. |
Copyright © 2010–2014 Arcbees. All rights reserved.