Skip to content

Instantly share code, notes, and snippets.

@jnmronquillo
Created June 11, 2012 18:39
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/2911824 to your computer and use it in GitHub Desktop.
Save jnmronquillo/2911824 to your computer and use it in GitHub Desktop.
public class ColaboradorPanel extends Composite {
public interface Binder extends UiBinder<Widget, ColaboradorPanel> {
}
private static Binder uiBinder = GWT.create(Binder.class);
public ColaboradorPanel() {
initWidget(uiBinder.createAndBindUi(this));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment