Package com.google.gwt.place.shared
Interface PlaceHistoryMapper
-
- All Known Subinterfaces:
PlaceHistoryMapperWithFactory<F>
public interface PlaceHistoryMapper
MapsPlace
s to/from tokens, used to configure aPlaceHistoryHandler
.You can annotate subinterfaces of PlaceHistoryMapper with
WithTokenizers
to have their implementation automatically generated via a call toGWT.create(Class)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Place
getPlace(java.lang.String token)
Returns thePlace
associated with the given token.java.lang.String
getToken(Place place)
Returns the String token associated with the givenPlace
.
-