blob: dd109431086f35fc6c17d5223f1c4e0eaf513102 (
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.server.LegacyApplication;
import com.vaadin.ui.Button;
import com.vaadin.ui.LegacyWindow;
public class Ticket2101 extends LegacyApplication {
@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.addComponent(b);
}
}
|