Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.wintindustries.pfserver.interfaces.container.components.PFUpload; import com.vaadin.shared.ui.window.WindowMode; import com.vaadin.ui.VerticalLayout; import com.vaadin.ui.Window; /** * * @author Admin */ public class UploadCenter extends Window { VerticalLayout uploadComponents; public UploadCenter() { this.setCaption("Upload Center"); this.setDraggable(true); this.setWindowMode(WindowMode.NORMAL); } public void buildContent() { } public void refreshContent() { } }