Skip to content

Instantly share code, notes, and snippets.

@jnmronquillo
Created June 9, 2012 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnmronquillo/2902572 to your computer and use it in GitHub Desktop.
Save jnmronquillo/2902572 to your computer and use it in GitHub Desktop.
package com.example.client;
import com.example.client.gin.ClientGinjector;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.ui.RootPanel;
public class example implements EntryPoint {
private final ClientGinjector injector = GWT.create(ClientGinjector.class);
public void onModuleLoad() {
RootPanel.get().add(injector.getColaboradorPanel());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment