blob: 5bd6c8a07534ea492cb5cad3b9963ab1070f674a (
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
32
33
34
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.ui;
/**
* A horizontal split panel contains two components and lays them horizontally.
* The first component is on the left side.
*
* <pre>
*
* +---------------------++----------------------+
* | || |
* | The first component || The second component |
* | || |
* +---------------------++----------------------+
*
* ^
* |
* the splitter
*
* </pre>
*
* @author Vaadin Ltd.
* @version
* @VERSION@
* @since 6.5
*/
public class HorizontalSplitPanel extends AbstractSplitPanel {
public HorizontalSplitPanel() {
super();
setSizeFull();
}
}
|