blob: c7380d3d7c6a7749672fb74c83186a1c17236f24 (
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
|
package com.vaadin.tests.components;
import com.vaadin.ui.Component;
import com.vaadin.ui.Label;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.Window;
public abstract class TestBase extends AbstractTestCase {
@Override
public final void init() {
window = new Window(getClass().getName());
setMainWindow(window);
window.getContent().setSizeFull();
Label label = new Label(getDescription(), Label.CONTENT_XHTML);
label.setWidth("100%");
window.getContent().addComponent(label);
layout = new VerticalLayout();
window.getContent().addComponent(layout);
((VerticalLayout) window.getContent()).setExpandRatio(layout, 1);
setup();
}
private Window window;
private VerticalLayout layout;
public TestBase() {
}
protected VerticalLayout getLayout() {
return layout;
}
protected abstract void setup();
protected void addComponent(Component c) {
getLayout().addComponent(c);
}
protected void removeComponent(Component c) {
getLayout().removeComponent(c);
}
protected void replaceComponent(Component oldComponent,
Component newComponent) {
getLayout().replaceComponent(oldComponent, newComponent);
}
}
|