blob: 430f3967a05e5dc2097c3b3bf19f4b037504d385 (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.Application;
import com.vaadin.ui.Button;
import com.vaadin.ui.Form;
import com.vaadin.ui.HorizontalLayout;
import com.vaadin.ui.TextField;
import com.vaadin.ui.Window;
@SuppressWarnings("serial")
public class Ticket3710 extends Application {
@Override
public void init() {
Window w = new Window("Test");
setMainWindow(w);
final Form f = new Form();
w.addComponent(f);
f.setSizeUndefined();
f.setCaption("Test form with a really long caption");
f.addField("foo", new TextField("Foo"));
f.addField("bar", new TextField("A bit longer field caption"));
HorizontalLayout hl = new HorizontalLayout();
hl.setWidth("100%");
Button b = new Button("right aligned");
hl.addComponent(b);
hl.setComponentAlignment(b, "r");
f.setFooter(hl);
}
}
|