blob: 210cb2535ec41a2ec7dd68be0ffacc5bdadd5678 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
package com.vaadin.tests.components;
import com.vaadin.server.WebBrowser;
import com.vaadin.server.WrappedRequest;
import com.vaadin.shared.ui.label.ContentMode;
import com.vaadin.ui.Component;
import com.vaadin.ui.Label;
import com.vaadin.ui.UI;
import com.vaadin.ui.VerticalLayout;
public abstract class AbstractTestUI extends UI {
@Override
public void init(WrappedRequest request) {
getPage().setTitle(getClass().getName());
Label label = new Label(getTestDescription(), ContentMode.XHTML);
label.setWidth("100%");
layout = new VerticalLayout();
getContent().addComponent(label);
getContent().addComponent(layout);
((VerticalLayout) getContent()).setExpandRatio(layout, 1);
setup(request);
}
private VerticalLayout layout;
protected VerticalLayout getLayout() {
return layout;
}
protected abstract void setup(WrappedRequest request);
@Override
public void addComponent(Component c) {
getLayout().addComponent(c);
}
@Override
public void removeComponent(Component c) {
getLayout().removeComponent(c);
}
@Override
public void replaceComponent(Component oldComponent, Component newComponent) {
getLayout().replaceComponent(oldComponent, newComponent);
}
protected abstract String getTestDescription();
protected abstract Integer getTicketNumber();
protected WebBrowser getBrowser() {
return getSession().getBrowser();
}
}
|