aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/main/java/com/vaadin/ui/dnd/FileDropHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/main/java/com/vaadin/ui/dnd/FileDropHandler.java')
-rw-r--r--server/src/main/java/com/vaadin/ui/dnd/FileDropHandler.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/server/src/main/java/com/vaadin/ui/dnd/FileDropHandler.java b/server/src/main/java/com/vaadin/ui/dnd/FileDropHandler.java
index 5df562169f..20cf34a1d4 100644
--- a/server/src/main/java/com/vaadin/ui/dnd/FileDropHandler.java
+++ b/server/src/main/java/com/vaadin/ui/dnd/FileDropHandler.java
@@ -24,22 +24,22 @@ import com.vaadin.ui.dnd.event.FileDropEvent;
* Handles the drop event on a file drop target.
*
* @param <T>
- * Type of the file drop target component.
+ * Type of the file drop target component.
* @author Vaadin Ltd
* @see FileDropEvent
* @see com.vaadin.ui.dnd.FileDropTarget
* @since 8.1
*/
-public interface FileDropHandler<T extends AbstractComponent> extends
- Serializable {
+public interface FileDropHandler<T extends AbstractComponent>
+ extends Serializable {
/**
* Handles the drop event. The method is called when files are dropped onto
* the file drop target this handler is registered to.
*
* @param event
- * The file drop event containing the list of files that were
- * dropped onto the component.
+ * The file drop event containing the list of files that were
+ * dropped onto the component.
*/
public void drop(FileDropEvent<T> event);
}