Refactor SWT directory structure.
[lgpl/argeo-commons.git] / rcp / org.argeo.swt.specific.rcp / src / org / eclipse / rap / fileupload / FileUploadListener.java
diff --git a/rcp/org.argeo.swt.specific.rcp/src/org/eclipse/rap/fileupload/FileUploadListener.java b/rcp/org.argeo.swt.specific.rcp/src/org/eclipse/rap/fileupload/FileUploadListener.java
deleted file mode 100644 (file)
index b59fd39..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2011, 2012 EclipseSource and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- *    EclipseSource - initial API and implementation
- ******************************************************************************/
-package org.eclipse.rap.fileupload;
-
-import org.eclipse.swt.widgets.Display;
-
-
-/**
- * Listener to react on progress and completion of a file upload.
- * <p>
- * <strong>Note:</strong> This listener will be called from a different thread than the UI thread.
- * Implementations must use {@link Display#asyncExec(Runnable)} to access the UI.
- * </p>
- *
- * @see FileUploadEvent
- */
-public interface FileUploadListener {
-
-  /**
-   * Called when new information about an in-progress upload is available.
-   *
-   * @param event event object that contains information about the uploaded file
-   * @see FileUploadEvent#getBytesRead()
-   */
-  void uploadProgress( FileUploadEvent event );
-
-  /**
-   * Called when a file upload has finished successfully.
-   *
-   * @param event event object that contains information about the uploaded file
-   * @see FileUploadEvent
-   */
-  void uploadFinished( FileUploadEvent event );
-
-  /**
-   * Called when a file upload failed.
-   *
-   * @param event event object that contains information about the uploaded file
-   * @see FileUploadEvent#getErrorMessage()
-   */
-  void uploadFailed( FileUploadEvent event );
-
-}