Guest User

Untitled

a guest
Oct 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1.  
  2. public class ColaboradorPanel implements IsWidget {
  3.  
  4. public interface Binder extends UiBinder<Widget, ColaboradorPanel> {
  5. }
  6. private static Binder uiBinder = GWT.create(Binder.class);
  7.  
  8. public ColaboradorPanel(){
  9. }
  10.  
  11. public Widget asWidget() {
  12.  
  13. return uiBinder.createAndBindUi(this);
  14. }
  15.  
  16. }
Add Comment
Please, Sign In to add comment