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

import com.vaadin.ui.Label;

/**
 * Label that has a default id <code>default10179</code> for the use of
 * IdOverrideTest (#10179).
 * 
 */
public class IdTestLabel extends Label {

    public IdTestLabel(String caption) {
        super(caption);
    }

}