package com.vaadin.tests.widgetset.server; import com.vaadin.ui.Label; /** * Label that has a default id default10179 for the use of * IdOverrideTest (#10179). * */ public class IdTestLabel extends Label { public IdTestLabel(String caption) { super(caption); } }