/* @VaadinApache2LicenseForJavaFiles@ */ package com.vaadin.ui; /** * A horizontal split panel contains two components and lays them horizontally. * The first component is on the left side. * *
 * 
 *      +---------------------++----------------------+
 *      |                     ||                      |
 *      | The first component || The second component |
 *      |                     ||                      |
 *      +---------------------++----------------------+
 *                              
 *                            ^
 *                            |
 *                      the splitter
 * 
 * 
* * @author Vaadin Ltd. * @since 6.5 */ public class HorizontalSplitPanel extends AbstractSplitPanel { public HorizontalSplitPanel() { super(); setSizeFull(); } }