Skip to content

Instantly share code, notes, and snippets.

@christiangoudreau
Created August 13, 2011 20:01
Show Gist options
  • Save christiangoudreau/1144203 to your computer and use it in GitHub Desktop.
Save christiangoudreau/1144203 to your computer and use it in GitHub Desktop.
How to build an url with parameters in Gwt-Platform
@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