1 2 3 4 5 6 7 8 9 10 11 12 13
package com.vaadin.tests.design.nested.customlayouts; import com.vaadin.ui.AbsoluteLayout; import com.vaadin.ui.Label; /** * @author Vaadin Ltd */ public class CustomAbsoluteLayout extends AbsoluteLayout { public CustomAbsoluteLayout() { this.addComponent(new Label()); } }