Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IDropActionDelegate.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IDropActionDelegate.java15
1 files changed, 8 insertions, 7 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IDropActionDelegate.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IDropActionDelegate.java
index 11a849a4df2..5a59bc39c76 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IDropActionDelegate.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/part/IDropActionDelegate.java
@@ -18,11 +18,12 @@ package org.eclipse.ui.part;
* org.eclipse.ui.dropActions extension point.
*/
public interface IDropActionDelegate {
- /**
- * Runs the drop action on the given source and target.
- * @param source The object that is being dragged.
- * @param target The object that the drop is occurring over.
- * @return boolean True if the drop was successful, and false otherwise.
- */
- boolean run(Object source, Object target);
+ /**
+ * Runs the drop action on the given source and target.
+ *
+ * @param source The object that is being dragged.
+ * @param target The object that the drop is occurring over.
+ * @return boolean True if the drop was successful, and false otherwise.
+ */
+ boolean run(Object source, Object target);
}

Back to the top