aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java/com/vaadin/tests/widgetset/server/ScrollableGridLayout.java
blob: 9d872b3fbb9cc0c40f179711956bdb7190f4b926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.vaadin.tests.widgetset.server;

import com.vaadin.ui.Component;
import com.vaadin.ui.GridLayout;

public class ScrollableGridLayout extends GridLayout {

    public ScrollableGridLayout() {
        super();
    }

    public ScrollableGridLayout(int columns, int rows, Component... children) {
        super(columns, rows, children);
    }

    public ScrollableGridLayout(int columns, int rows) {
        super(columns, rows);
    }
}