Package com.vaadin.tests.components.tabsheet

Source Code of com.vaadin.tests.components.tabsheet.EmptyTabSheet

package com.vaadin.tests.components.tabsheet;

import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.TabSheet;

public class EmptyTabSheet extends TestBase {

    private TabSheet tabSheet;

    @Override
    protected String getDescription() {
        return "Test a TabSheet without any tabs.";
    }

    @Override
    protected Integer getTicketNumber() {
        return null;
    }

    @Override
    protected void setup() {
        tabSheet = new TabSheet();
        tabSheet.setId("tabsheet");
        addComponent(tabSheet);
    }

}
TOP

Related Classes of com.vaadin.tests.components.tabsheet.EmptyTabSheet

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.