You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PotusForm.java 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright 2000-2016 Vaadin Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. package com.vaadin.tests.declarative;
  17. import com.vaadin.annotations.DesignRoot;
  18. import com.vaadin.annotations.PropertyId;
  19. import com.vaadin.ui.Button;
  20. import com.vaadin.ui.DateField;
  21. import com.vaadin.ui.VerticalLayout;
  22. import com.vaadin.ui.declarative.Design;
  23. import com.vaadin.v7.ui.ComboBox;
  24. import com.vaadin.v7.ui.TextField;
  25. @DesignRoot
  26. public class PotusForm extends VerticalLayout {
  27. @PropertyId("firstName")
  28. public TextField firstName;
  29. @PropertyId("lastName")
  30. public TextField lastName;
  31. @PropertyId("party")
  32. public ComboBox party;
  33. @PropertyId("tookOffice")
  34. public DateField tookOffice;
  35. @PropertyId("leftOffice")
  36. public DateField leftOffice;
  37. public Button save;
  38. public Button revert;
  39. public Button delete;
  40. public PotusForm() {
  41. Design.read(this);
  42. party.addItems("Democratic Party");
  43. party.addItems("Republican Party");
  44. party.addItems("Independent");
  45. }
  46. }