aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/main/java/com/vaadin/event/dnd/FileDropHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/main/java/com/vaadin/event/dnd/FileDropHandler.java')
-rw-r--r--server/src/main/java/com/vaadin/event/dnd/FileDropHandler.java44
1 files changed, 0 insertions, 44 deletions
diff --git a/server/src/main/java/com/vaadin/event/dnd/FileDropHandler.java b/server/src/main/java/com/vaadin/event/dnd/FileDropHandler.java
deleted file mode 100644
index 5e74e44349..0000000000
--- a/server/src/main/java/com/vaadin/event/dnd/FileDropHandler.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright 2000-2016 Vaadin Ltd.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
-package com.vaadin.event.dnd;
-
-import java.io.Serializable;
-
-import com.vaadin.ui.AbstractComponent;
-
-/**
- * Handles the drop event on a file drop target.
- *
- * @param <T>
- * Type of the file drop target component.
- * @author Vaadin Ltd
- * @see FileDropEvent
- * @see com.vaadin.ui.FileDropTarget
- * @since 8.1
- */
-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.
- */
- public void drop(FileDropEvent<T> event);
-}