blob: 62c11e6509a3ffe14de6ce60a533c5af4b43b694 (
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.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.getContent().addComponent(b);
}
}
|