Package com.vaadin.tests.tickets

Source Code of com.vaadin.tests.tickets.Ticket2245

package com.vaadin.tests.tickets;

import com.vaadin.server.LegacyApplication;
import com.vaadin.ui.HorizontalSplitPanel;
import com.vaadin.ui.LegacyWindow;

public class Ticket2245 extends LegacyApplication {

    @Override
    public void init() {
        LegacyWindow main = new LegacyWindow("The Main Window");
        main.getContent().setSizeFull();
        setMainWindow(main);
        HorizontalSplitPanel sp = new HorizontalSplitPanel();
        main.addComponent(sp);
    }
}
TOP

Related Classes of com.vaadin.tests.tickets.Ticket2245

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.