Package com.vaadin.tests.components.ui

Source Code of com.vaadin.tests.components.ui.WindowWithLabel

package com.vaadin.tests.components.ui;

import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractTestUI;
import com.vaadin.ui.Label;
import com.vaadin.ui.Window;

public class WindowWithLabel extends AbstractTestUI {

    @Override
    protected void setup(VaadinRequest request) {
        setContent(new Label("UI"));
        Window window = new Window("A window");
        addWindow(window);
    }

    @Override
    protected String getTestDescription() {
        return "Resize the window. It should work.";
    }

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

}
TOP

Related Classes of com.vaadin.tests.components.ui.WindowWithLabel

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.