Package com.vaadin.tests.tooltip

Source Code of com.vaadin.tests.tooltip.StationaryTooltip

package com.vaadin.tests.tooltip;

import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractTestUI;
import com.vaadin.ui.Button;
import com.vaadin.ui.VerticalLayout;

public class StationaryTooltip extends AbstractTestUI {

    @Override
    protected void setup(VaadinRequest request) {
        VerticalLayout vl = new VerticalLayout();
        Button button = new Button("Button");
        button.setDescription("description");

        button.setWidth("200px");
        vl.addComponent(button);

        addComponent(vl);
    }

    @Override
    protected String getTestDescription() {
        return null;
    }

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

Related Classes of com.vaadin.tests.tooltip.StationaryTooltip

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.