Advertisement
Guest User

Untitled

a guest
Jul 13th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. package at.nisteria.nisteria;
  2.  
  3. import com.vaadin.annotations.AutoGenerated;
  4. import com.vaadin.annotations.DesignRoot;
  5. import com.vaadin.ui.Button;
  6. import com.vaadin.ui.Grid;
  7. import com.vaadin.ui.TextField;
  8. import com.vaadin.ui.VerticalLayout;
  9. import com.vaadin.ui.declarative.Design;
  10.  
  11. /**
  12. * !! DO NOT EDIT THIS FILE !!
  13. *
  14. * This class is generated by Vaadin Designer and will be overwritten.
  15. *
  16. * Please make a subclass with logic and additional interfaces as needed,
  17. * e.g class LoginView extends LoginDesign implements View { }
  18. */
  19. @DesignRoot
  20. @AutoGenerated
  21. @SuppressWarnings("serial")
  22. public class MandantList extends VerticalLayout {
  23. protected Button save;
  24. protected TextField name;
  25. protected TextField anmerkung;
  26. protected Grid<at.nisteria.nisteria.Mandant> grid;
  27.  
  28. public MandantList() {
  29. Design.read(this);
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement