blob: 097a91929d0dee316a0e8d31d999ed71f1a02917 (
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
30
31
|
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.TabSheet;
import com.vaadin.ui.VerticalLayout;
public class Ticket2425 extends LegacyApplication {
@Override
public void init() {
LegacyWindow w = new LegacyWindow(getClass().getSimpleName());
setMainWindow(w);
w.addComponent(new Label("No scrollbars should be visible anywhere"));
TabSheet ts = new TabSheet();
ts.addTab(createPanel(), "Panel 1", null);
ts.addTab(createPanel(), "Panel 2", null);
w.addComponent(ts);
}
private Panel createPanel() {
VerticalLayout layout = new VerticalLayout();
layout.setMargin(true);
return new Panel(layout);
}
}
|