blob: e095bb294ccb5cba1c27cc7f85be525a14eeb17e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package com.vaadin.tests.tickets;
import com.vaadin.ui.Form;
import com.vaadin.ui.TextField;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.Window;
public class Ticket2407 extends com.vaadin.Application {
@Override
public void init() {
final Window main = new Window("Ticket2407");
setMainWindow(main);
Form form = new Form(new VerticalLayout());
TextField text = new TextField("This caption shall be visible");
text.setRequired(true);
form.addField("test", text);
main.addComponent(form);
}
}
|