Back to GWTP Home

Uses of Class
com.gwtplatform.mvp.client.proxy.PlaceRequest

Packages that use PlaceRequest
com.gwtplatform.carstore.client.application.manufacturer   
com.gwtplatform.mvp.client   
com.gwtplatform.mvp.client.proxy   
 

Uses of PlaceRequest in com.gwtplatform.carstore.client.application.manufacturer
 

Methods in com.gwtplatform.carstore.client.application.manufacturer with parameters of type PlaceRequest
 void ManufacturerDetailPresenter.prepareFromRequest(PlaceRequest request)
           
 

Uses of PlaceRequest in com.gwtplatform.mvp.client
 

Methods in com.gwtplatform.mvp.client with parameters of type PlaceRequest
 void Presenter.prepareFromRequest(PlaceRequest request)
          Prepare the state of the presenter given the information contained in the PlaceRequest.
 

Uses of PlaceRequest in com.gwtplatform.mvp.client.proxy
 

Methods in com.gwtplatform.mvp.client.proxy that return PlaceRequest
 PlaceRequest PlaceRequest.Builder.build()
           
 PlaceRequest PlaceManager.getCurrentPlaceRequest()
          Access the current place request, that is, the tail of the place request hierarchy.
 PlaceRequest PlaceManagerImpl.getCurrentPlaceRequest()
           
 PlaceRequest GetPlaceTitleEvent.getRequest()
           
 PlaceRequest NavigationEvent.getRequest()
          Access the PlaceRequest that triggered that navigation event.
 PlaceRequest ParameterTokenFormatter.toPlaceRequest(String placeToken)
           
 PlaceRequest TokenFormatter.toPlaceRequest(String placeToken)
          Converts a place token into a PlaceRequest.
 PlaceRequest RouteTokenFormatter.toPlaceRequest(String placeToken)
           
 PlaceRequest ParameterTokenFormatterOld.toPlaceRequest(String placeToken)
          Deprecated.  
 PlaceRequest PlaceRequest.with(String name, String value)
          Deprecated. Please use PlaceRequest.Builder.with(String, String) instead
 

Methods in com.gwtplatform.mvp.client.proxy that return types with arguments of type PlaceRequest
 List<PlaceRequest> PlaceManager.getCurrentPlaceHierarchy()
          Access the current place hierarchy, with the current PlaceRequest being the last element of this list.
 List<PlaceRequest> PlaceManagerImpl.getCurrentPlaceHierarchy()
           
 List<PlaceRequest> ParameterTokenFormatter.toPlaceRequestHierarchy(String historyToken)
           
 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> ParameterTokenFormatterOld.toPlaceRequestHierarchy(String historyToken)
          Deprecated.  
 

Methods in com.gwtplatform.mvp.client.proxy with parameters of type PlaceRequest
 String PlaceManager.buildHistoryToken(PlaceRequest request)
          Builds a string corresponding to the history token to reveal the specified PlaceRequest.
 String PlaceManagerImpl.buildHistoryToken(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)
           
 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.
 String PlaceManagerImpl.buildRelativeHistoryToken(PlaceRequest request, int level)
           
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 PlaceRequest.hasSameNameToken(PlaceRequest other)
          Checks if this place request has the same name token as the one passed in.
 boolean PlaceImpl.matchesRequest(PlaceRequest request)
           
 boolean Place.matchesRequest(PlaceRequest request)
          Makes sure the method matches the passed request.
 boolean ProxyPlaceAbstract.matchesRequest(PlaceRequest request)
           
 void PlaceManager.revealPlace(PlaceRequest request)
          Programmatically reveals the specified place, updating the browser URL in the process.
 void PlaceManagerImpl.revealPlace(PlaceRequest request)
           
 void PlaceManager.revealPlace(PlaceRequest request, boolean updateBrowserUrl)
          Programmatically reveals the specified place.
 void PlaceManagerImpl.revealPlace(PlaceRequest request, boolean updateBrowserUrl)
           
 void PlaceManager.revealRelativePlace(PlaceRequest request)
          Programmatically reveals the specified place as a child of the current place hierarchy.
 void PlaceManagerImpl.revealRelativePlace(PlaceRequest request)
           
 void PlaceManager.revealRelativePlace(PlaceRequest request, int level)
          Programmatically reveals the specified place relative to the other places in the current place hierarchy.
 void PlaceManagerImpl.revealRelativePlace(PlaceRequest request, int level)
           
 String ParameterTokenFormatter.toPlaceToken(PlaceRequest placeRequest)
           
 String TokenFormatter.toPlaceToken(PlaceRequest placeRequest)
          Converts a PlaceRequest into a place token.
 String RouteTokenFormatter.toPlaceToken(PlaceRequest placeRequest)
           
 String ParameterTokenFormatterOld.toPlaceToken(PlaceRequest placeRequest)
          Deprecated.  
 void PlaceManager.updateHistory(PlaceRequest request, boolean updateBrowserUrl)
          Updates History without firing a ValueChangeEvent.
 void PlaceManagerImpl.updateHistory(PlaceRequest request, boolean updateBrowserUrl)
           
 

Method parameters in com.gwtplatform.mvp.client.proxy with type arguments of type PlaceRequest
 void PlaceManager.revealPlaceHierarchy(List<PlaceRequest> placeRequestHierarchy)
          Programmatically reveals the specified hierarchy of places place, updating the browser URL in the process.
 void PlaceManagerImpl.revealPlaceHierarchy(List<PlaceRequest> placeRequestHierarchy)
           
 String ParameterTokenFormatter.toHistoryToken(List<PlaceRequest> placeRequestHierarchy)
           
 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 ParameterTokenFormatterOld.toHistoryToken(List<PlaceRequest> placeRequestHierarchy)
          Deprecated.  
 

Constructors in com.gwtplatform.mvp.client.proxy with parameters of type PlaceRequest
GetPlaceTitleEvent(PlaceRequest request, SetPlaceTitleHandler handler)
           
NavigationEvent(PlaceRequest request)
          Create a navigation event and attach it to a place request.
PlaceRequest.Builder(PlaceRequest request)
          'Copy' constructor for initializing a new PlaceRequest.Builder with data from an existing PlaceRequest, e.g.
 


Back to GWTP Home

Copyright © 2010-2013 ArcBees. All Rights Reserved.