1 2 3 4 5 6 7 8 9 10 11 12 13
package com.vaadin.tests.design.nested.customlayouts; import com.vaadin.ui.Label; import com.vaadin.ui.TabSheet; /** * @author Vaadin Ltd */ public class CustomTabSheet extends TabSheet { public CustomTabSheet() { addComponent(new Label()); } }