Guest User

Untitled

a guest
Feb 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. package de.sebastianthoma.wochenplaner.client;
  2.  
  3. import com.google.gwt.dom.client.Style.Unit;
  4. import com.google.gwt.user.client.ui.Composite;
  5. import com.google.gwt.user.client.ui.DockLayoutPanel;
  6. import com.google.gwt.user.client.ui.Grid;
  7.  
  8.  
  9.  
  10.  
  11.  
  12. public class WochenplanerGui extends Composite {
  13.  
  14.  
  15.  
  16. DockLayoutPanel panel = new DockLayoutPanel(Unit.EM);
  17. Grid seite = new Grid(24,0);
  18.  
  19. public WochenplanerGui(){
  20.  
  21. panel.setPixelSize(600, 500);
  22. initWidget(panel);
  23. panel.add(seite);
  24.  
  25.  
  26.  
  27.  
  28. }
  29. }
Add Comment
Please, Sign In to add comment