summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti <silenio>2002-05-03 15:13:52 +0000
committerSilenio Quarti <silenio>2002-05-03 15:13:52 +0000
commitd4c14146126b08070355f190f254fd9ab6baf89d (patch)
tree1a32c028826f14608b051df21b465cc1b9ea1ee4
parentee2ac38d25d6a4062d9f67195b2913ce67319886 (diff)
downloadeclipse.platform.swt-d4c14146126b08070355f190f254fd9ab6baf89d.tar.gz
eclipse.platform.swt-d4c14146126b08070355f190f254fd9ab6baf89d.tar.xz
eclipse.platform.swt-d4c14146126b08070355f190f254fd9ab6baf89d.zip
*** empty log message ***
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/emulated/org/eclipse/swt/dnd/DragSource.java15
1 files changed, 10 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/emulated/org/eclipse/swt/dnd/DragSource.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/emulated/org/eclipse/swt/dnd/DragSource.java
index b78e87ab86..b68b571372 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/emulated/org/eclipse/swt/dnd/DragSource.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/emulated/org/eclipse/swt/dnd/DragSource.java
@@ -101,6 +101,16 @@ public void addDragListener(DragSourceListener listener) {
}
+/**
+ * Returns the Control which is registered for this DragSource. This is the control that the
+ * user clicks in to initiate dragging.
+ *
+ * @return the Control which is registered for this DragSource
+ */
+public Control getControl () {
+ return null;
+}
+
public Display getDisplay () {
return null;
}
@@ -132,10 +142,5 @@ public void removeDragListener(DragSourceListener listener) {
*/
public void setTransfer(Transfer[] transferAgents){
}
-/**
- * @deprecated - use DragSourceListener.dragStart
- */
-public void startDrag() {
-}
}