blob: 6824653dbddc4667c2fea434ca422cf50d7bd2cf (
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
|
package com.vaadin.tests.design;
import com.vaadin.ui.Button;
import com.vaadin.ui.NativeButton;
import com.vaadin.ui.VerticalLayout;
/**
* Template to be populated in the tests
*
* @author Vaadin Ltd
*/
public class LayoutTemplate extends VerticalLayout {
private NativeButton firstButton; // assigned based on local id
private NativeButton secondButton; // assigned based on id
private NativeButton yetanotherbutton; // assigned based on caption
private Button clickme; // assigned based on caption
public NativeButton getFirstButton() {
return firstButton;
}
public NativeButton getSecondButton() {
return secondButton;
}
public NativeButton getYetanotherbutton() {
return yetanotherbutton;
}
public Button getClickme() {
return clickme;
}
}
|