Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2007-11-02 05:17:10 +0000
committerslewis2007-11-02 05:17:10 +0000
commita552d61ee8a22eefa12d463c5de4f8bfaa888773 (patch)
treee7a7cb567f997c4d2216261ab5c93150e9b77ebb
parent019904d3de795fd809bd11972c7aacd498f8916d (diff)
downloadorg.eclipse.ecf-a552d61ee8a22eefa12d463c5de4f8bfaa888773.tar.gz
org.eclipse.ecf-a552d61ee8a22eefa12d463c5de4f8bfaa888773.tar.xz
org.eclipse.ecf-a552d61ee8a22eefa12d463c5de4f8bfaa888773.zip
Fixed variable name
-rw-r--r--framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/presence/ui/dnd/IRosterViewerDropTarget.java39
1 files changed, 19 insertions, 20 deletions
diff --git a/framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/presence/ui/dnd/IRosterViewerDropTarget.java b/framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/presence/ui/dnd/IRosterViewerDropTarget.java
index a726a3413..55869ed33 100644
--- a/framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/presence/ui/dnd/IRosterViewerDropTarget.java
+++ b/framework/bundles/org.eclipse.ecf.presence.ui/src/org/eclipse/ecf/presence/ui/dnd/IRosterViewerDropTarget.java
@@ -21,27 +21,26 @@ import org.eclipse.swt.dnd.TransferData;
*/
public interface IRosterViewerDropTarget {
- /**
- * Validates dropping on the given roster item. This method is called whenever some
- * aspect of the drop operation changes.
- *
- * @param rosterItem the roster item that the mouse is currently hovering over, or
- * <code>null</code> if the mouse is hovering over empty space
- * @param operation the current drag operation (copy, move, etc.)
- * @param transferType the current transfer type
- * @return <code>true</code> if the drop is valid, and <code>false</code>
- * otherwise
- */
- public boolean validateDrop(IRosterItem rosterItem, int operation,
- TransferData transferType);
+ /**
+ * Validates dropping on the given roster item. This method is called whenever some
+ * aspect of the drop operation changes.
+ *
+ * @param rosterItem the roster item that the mouse is currently hovering over, or
+ * <code>null</code> if the mouse is hovering over empty space
+ * @param operation the current drag operation (copy, move, etc.)
+ * @param transferData the current transfer type
+ * @return <code>true</code> if the drop is valid, and <code>false</code>
+ * otherwise
+ */
+ public boolean validateDrop(IRosterItem rosterItem, int operation, TransferData transferData);
- /**
- * Performs any work associated with the drop.
- *
- * @param data the drop data
- * @return <code>true</code> if the drop was successful, and
- * <code>false</code> otherwise
- */
+ /**
+ * Performs any work associated with the drop.
+ *
+ * @param data the drop data
+ * @return <code>true</code> if the drop was successful, and
+ * <code>false</code> otherwise
+ */
public boolean performDrop(Object data);
}

Back to the top