blob: c4c6b7320d722318dcf2546d7b9d2a89f7ab5bc4 (
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.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);
}
}
|