Package com.vaadin.tests.components.tabsheet

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

package com.vaadin.tests.components.tabsheet;

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

public class TabSheetWithoutTabCaption extends TestBase {

    @Override
    protected String getDescription() {
        return "There should be a tabsheet with one tab visible. The tab has no caption and contains a label saying 'Tab contents'.";
    }

    @Override
    protected Integer getTicketNumber() {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    protected void setup() {
        final TabSheet moduleArea = new TabSheet();
        Label label = new Label("Tab contents");
        moduleArea.addTab(label);
        addComponent(moduleArea);
    }

}
TOP

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

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.