blob: 010e090a2d4e4ab20da0a67364f93e879b545ee4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
package com.vaadin.tests.tickets;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.Panel;
public class Ticket1868 extends com.vaadin.LegacyApplication {
@Override
public void init() {
setMainWindow(new LegacyWindow("#1868"));
Panel p = new Panel(
"This is a really long caption for the panel, too long in fact!");
p.setWidth("300px");
p.setHeight("300px");
getMainWindow().addComponent(p);
}
}
|