Package com.vaadin.tests.components.ui

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

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 EmptyWindow extends AbstractTestUI {

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

    @Override
    protected String getTestDescription() {
        return "There should be an empty window on the screen. Currently it should have the min width defined in VWindow";
    }

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

}
TOP

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

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.