blob: 13f1422b6a387531ccbf47abb051671943e4d13c (
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
|
package com.vaadin.ui;
import com.vaadin.terminal.gwt.client.ui.VVerticalLayout;
/**
* 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 IT Mill Ltd.
* @version
* @VERSION@
* @since 5.3
*/
@SuppressWarnings("serial")
@ClientWidget(VVerticalLayout.class)
public class VerticalLayout extends AbstractOrderedLayout {
public VerticalLayout() {
setWidth("100%");
}
@Override
public String getTag() {
return "verticallayout";
}
}
|