blob: a04d052d98e462d667e172e430c78c47f4329d27 (
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
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.ui;
/**
* Vertical layout
*
* <code>VerticalLayout</code> is a component container, which shows the
* subcomponents in the order of their addition (vertically). A vertical layout
* is by default 100% wide.
*
* @author Vaadin Ltd.
* @version
* @VERSION@
* @since 5.3
*/
@SuppressWarnings("serial")
public class VerticalLayout extends AbstractOrderedLayout {
public VerticalLayout() {
setWidth("100%");
}
}
|