Created
August 13, 2011 20:01
-
-
Save christiangoudreau/1144203 to your computer and use it in GitHub Desktop.
How to build an url with parameters in Gwt-Platform
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Inject | |
public MessagePresenter(final EventBus eventBus, final MyView view, final PlaceManager manager) { | |
super(eventBus, view); | |
PlaceRequest request = new PlaceRequest("album").with("id", "12351232"); | |
InlineHyperlink hyperlink = new InlineHyperlink("album", manager.buildHistoryToken(request)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment