/* @VaadinApache2LicenseForJavaFiles@ */ package com.vaadin.ui; /** * Vertical layout * * VerticalLayout 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%"); } }