aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/test/java/com/vaadin/tests/design/nested/customlayouts/CustomAbsoluteLayout.java
blob: e13300f617f0970ae75d6ddbc7126106775650ba (plain)
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());
    }
}