Package com.vaadin.shared.ui.upload

Examples of com.vaadin.shared.ui.upload.UploadServerRpc


     * Creates a new instance of Upload.
     *
     * The receiver must be set before performing an upload.
     */
    public Upload() {
        registerRpc(new UploadServerRpc() {
            @Override
            public void change(String filename) {
                fireEvent(new ChangeEvent(Upload.this, filename));
            }
        });
View Full Code Here

TOP

Related Classes of com.vaadin.shared.ui.upload.UploadServerRpc

Copyright © 2018 www.massapicom. 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.