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