blob: f7099d88f49b82fd24e1784b4bce12dfcf7542c3 (
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.Application;
import com.vaadin.ui.Label;
import com.vaadin.ui.Panel;
import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.themes.Reindeer;
public class Ticket2215 extends Application.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);
}
}
|