blob: 387f9465cc89112e288122aa09e2c3dd51078415 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package com.vaadin.tests.tickets;
import com.vaadin.server.LegacyApplication;
import com.vaadin.ui.Label;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.Panel;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.themes.Reindeer;
public class Ticket2215 extends LegacyApplication {
@Override
public void init() {
setMainWindow(new LegacyWindow());
VerticalLayout ol = new VerticalLayout();
Panel p = new Panel("Test");
p.addComponent(new Label("Panel1"));
p.setHeight("500px");
p.setWidth("500px");
p.setStyleName(Reindeer.PANEL_LIGHT);
ol.addComponent(p);
ol.addComponent(new Label("NextComponent"));
getMainWindow().addComponent(ol);
}
}
|