blob: c38e4b6ed2028fe4ecab0ed11498f54c420e1ce5 (
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.Application;
import com.vaadin.ui.Button;
import com.vaadin.ui.UI.LegacyWindow;
public class Ticket2101 extends Application {
@Override
public void init() {
LegacyWindow w = new LegacyWindow(getClass().getSimpleName());
setMainWindow(w);
Button b = new Button(
"Button with a long text which will not fit on 50 pixels");
b.setWidth("50px");
w.getContent().addComponent(b);
}
}
|