aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/HorizontalLayout.java
blob: 31941f1024062a8691d9c7ba702a8880832735be (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
package com.vaadin.ui;

import com.vaadin.terminal.gwt.client.ui.VHorizontalLayout;

/**
 * Horizontal layout
 * 
 * <code>HorizontalLayout</code> is a component container, which shows the
 * subcomponents in the order of their addition (horizontally).
 * 
 * @author IT Mill Ltd.
 * @version
 * @VERSION@
 * @since 5.3
 */
@SuppressWarnings("serial")
@ClientWidget(VHorizontalLayout.class)
public class HorizontalLayout extends AbstractOrderedLayout {

    public HorizontalLayout() {

    }

}