aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java/com/vaadin/tests/widgetset/server/IdTestLabel.java
blob: 2c1afd3cd3cf18943a6dd07cf003905dee62938d (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);
    }

}