blob: 10eebe4cbafdceeda390ef76bead7043129548eb (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.Application;
import com.vaadin.ui.Root.LegacyWindow;
import com.vaadin.ui.TextField;
import com.vaadin.ui.VerticalLayout;
public class Ticket1940 extends Application.LegacyApplication {
@Override
public void init() {
final LegacyWindow w = new LegacyWindow(getClass().getName());
setMainWindow(w);
final VerticalLayout l = new VerticalLayout();
l.setWidth("200px");
l.setHeight(null);
TextField t = new TextField();
l.addComponent(t);
t.setRequired(true);
w.addComponent(l);
}
}
|