summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/event/dd/TargetDetails.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/vaadin/event/dd/TargetDetails.java')
-rw-r--r--src/com/vaadin/event/dd/TargetDetails.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/com/vaadin/event/dd/TargetDetails.java b/src/com/vaadin/event/dd/TargetDetails.java
deleted file mode 100644
index a352fbec60..0000000000
--- a/src/com/vaadin/event/dd/TargetDetails.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
-@VaadinApache2LicenseForJavaFiles@
- */
-package com.vaadin.event.dd;
-
-import java.io.Serializable;
-
-import com.vaadin.ui.Tree.TreeTargetDetails;
-
-/**
- * TargetDetails wraps drop target related information about
- * {@link DragAndDropEvent}.
- * <p>
- * When a TargetDetails object is used in {@link DropHandler} it is often
- * preferable to cast the TargetDetails to an implementation provided by
- * DropTarget like {@link TreeTargetDetails}. They often provide a better typed,
- * drop target specific API.
- *
- * @since 6.3
- *
- */
-public interface TargetDetails extends Serializable {
-
- /**
- * Gets target data associated with the given string key
- *
- * @param key
- * @return The data associated with the key
- */
- public Object getData(String key);
-
- /**
- * @return the drop target on which the {@link DragAndDropEvent} happened.
- */
- public DropTarget getTarget();
-
-}