com.wintindustries.pfserver.interfaces.container.components.PFUpload.UploadCenter.java Source code

Java tutorial

Introduction

Here is the source code for com.wintindustries.pfserver.interfaces.container.components.PFUpload.UploadCenter.java

Source

/*
 * 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() {

    }

}