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.

InvalidLayoutTemplate.java 877B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.vaadin.tests.design;
  2. import com.vaadin.ui.Button;
  3. import com.vaadin.ui.NativeButton;
  4. import com.vaadin.ui.TextField;
  5. import com.vaadin.ui.VerticalLayout;
  6. public class InvalidLayoutTemplate extends VerticalLayout {
  7. private NativeButton firstButton;
  8. private NativeButton secondButton;
  9. private NativeButton yetanotherbutton; // generated based on caption
  10. private Button clickme; // generated based on caption
  11. private TextField shouldNotBeMapped;
  12. public NativeButton getFirstButton() {
  13. return firstButton;
  14. }
  15. public NativeButton getSecondButton() {
  16. return secondButton;
  17. }
  18. public NativeButton getYetanotherbutton() {
  19. return yetanotherbutton;
  20. }
  21. public Button getClickme() {
  22. return clickme;
  23. }
  24. public TextField getShouldNotBeMapped() {
  25. return shouldNotBeMapped;
  26. }
  27. }