summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod <carolyn>2007-05-31 18:29:57 +0000
committerCarolyn MacLeod <carolyn>2007-05-31 18:29:57 +0000
commite7255dd0401a8f22aea419c5ffbac41d139e34e7 (patch)
treece9418bc2031254133f99362531ed096c767ddbb
parent3ca1e458cb85cffbdfd2f19f63f482313f0ddefe (diff)
downloadeclipse.platform.swt-e7255dd0401a8f22aea419c5ffbac41d139e34e7.tar.gz
eclipse.platform.swt-e7255dd0401a8f22aea419c5ffbac41d139e34e7.tar.xz
eclipse.platform.swt-e7255dd0401a8f22aea419c5ffbac41d139e34e7.zip
Javadoc
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextDropTargetEffect.java4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDragSourceEffect.java10
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDropTargetEffect.java4
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDragSourceEffect.java8
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDropTargetEffect.java4
5 files changed, 15 insertions, 15 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextDropTargetEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextDropTargetEffect.java
index 3302676bd2..4af30cb234 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextDropTargetEffect.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledTextDropTargetEffect.java
@@ -20,8 +20,8 @@ import org.eclipse.swt.widgets.*;
* when a drag occurs over a <code>Table</code>.
*
* <p>Classes that wish to provide their own drag under effect for a <code>StyledText</code>
- * can extend this class, override the <code>StyledTextDropTargetAdapter.dragOver</code>
- * method and override any other applicable methods in <code>DropTargetAdapter</code> to
+ * can extend this class, override the <code>StyledTextDropTargetEffect.dragOver</code>
+ * method and override any other applicable methods in <code>StyledTextDropTargetEffect</code> to
* display their own drag under effect.</p>
*
* Subclasses that override any methods of this class should call the corresponding
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDragSourceEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDragSourceEffect.java
index 830a357fae..a134b2628e 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDragSourceEffect.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDragSourceEffect.java
@@ -20,14 +20,14 @@ import org.eclipse.swt.widgets.*;
* when a drag is initiated from a <code>Table</code>.
*
* <p>Classes that wish to provide their own source image for a <code>Table</code> can
- * extend the <code>DragSourceAdapter</code> class, override the
- * <code>DragSourceAdapter.dragStart</code> method and set the field
+ * extend the <code>TableDragSourceEffect</code> class, override the
+ * <code>TableDragSourceEffect.dragStart</code> method and set the field
* <code>DragSourceEvent.image</code> with their own image.</p>
*
* Subclasses that override any methods of this class must call the corresponding
* <code>super</code> method to get the default drag source effect implementation.
*
- * @see DragSourceAdapter
+ * @see DragSourceEffect
* @see DragSourceEvent
*
* @since 3.3
@@ -47,7 +47,7 @@ public class TableDragSourceEffect extends DragSourceEffect {
/**
* This implementation of <code>dragFinished</code> disposes the image
- * that was created in <code>TableDragSourceAdapter.dragStart</code>.
+ * that was created in <code>TableDragSourceEffect.dragStart</code>.
*
* Subclasses that override this method should call <code>super.dragFinished(event)</code>
* to dispose the image in the default implementation.
@@ -62,7 +62,7 @@ public class TableDragSourceEffect extends DragSourceEffect {
/**
* This implementation of <code>dragStart</code> will create a default
* image that will be used during the drag. The image should be disposed
- * when the drag is completed in the <code>TableDragSourceAdapter.dragFinished</code>
+ * when the drag is completed in the <code>TableDragSourceEffect.dragFinished</code>
* method.
*
* Subclasses that override this method should call <code>super.dragStart(event)</code>
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDropTargetEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDropTargetEffect.java
index 0315c8db03..04e2f9c4bf 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDropTargetEffect.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TableDropTargetEffect.java
@@ -19,8 +19,8 @@ import org.eclipse.swt.widgets.*;
* when a drag occurs over a <code>Table</code>.
*
* <p>Classes that wish to provide their own drag under effect for a <code>Table</code>
- * can extend the <code>DragTargetAdapter</code> and override any applicable methods
- * in <code>DropTargetAdapter</code> to display their own drag under effect.</p>
+ * can extend the <code>TableDropTargetEffect</code> and override any applicable methods
+ * in <code>TableDropTargetEffect</code> to display their own drag under effect.</p>
*
* Subclasses that override any methods of this class must call the corresponding
* <code>super</code> method to get the default drag under effect implementation.
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDragSourceEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDragSourceEffect.java
index e00b0a79a9..0beb423819 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDragSourceEffect.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDragSourceEffect.java
@@ -20,13 +20,13 @@ import org.eclipse.swt.widgets.*;
* when a drag is initiated from a <code>Tree</code>.
*
* <p>Classes that wish to provide their own source image for a <code>Tree</code> can
- * extend <code>DragSourceAdapter</code> class and override the <code>DragSourceAdapter.dragStart</code>
+ * extend <code>TreeDragSourceEffect</code> class and override the <code>TreeDragSourceEffect.dragStart</code>
* method and set the field <code>DragSourceEvent.image</code> with their own image.</p>
*
* Subclasses that override any methods of this class must call the corresponding
* <code>super</code> method to get the default drag under effect implementation.
*
- * @see DragSourceAdapter
+ * @see DragSourceEffect
* @see DragSourceEvent
*
* @since 3.3
@@ -46,7 +46,7 @@ public class TreeDragSourceEffect extends DragSourceEffect {
/**
* This implementation of <code>dragFinished</code> disposes the image
- * that was created in <code>TableDragSourceAdapter.dragStart</code>.
+ * that was created in <code>TreeDragSourceEffect.dragStart</code>.
*
* Subclasses that override this method should call <code>super.dragFinished(event)</code>
* to dispose the image in the default implementation.
@@ -61,7 +61,7 @@ public class TreeDragSourceEffect extends DragSourceEffect {
/**
* This implementation of <code>dragStart</code> will create a default
* image that will be used during the drag. The image should be disposed
- * when the drag is completed in the <code>TableDragSourceAdapter.dragFinished</code>
+ * when the drag is completed in the <code>TreeDragSourceEffect.dragFinished</code>
* method.
*
* Subclasses that override this method should call <code>super.dragStart(event)</code>
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDropTargetEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDropTargetEffect.java
index 4425c39b4d..ed3b595e49 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDropTargetEffect.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/win32/org/eclipse/swt/dnd/TreeDropTargetEffect.java
@@ -19,8 +19,8 @@ import org.eclipse.swt.widgets.*;
* when a drag occurs over a <code>Tree</code>.
*
* <p>Classes that wish to provide their own drag under effect for a <code>Tree</code>
- * can extend the <code>DropTargetAdapter</code> class and override any applicable methods
- * in <code>DropTargetAdapter</code> to display their own drag under effect.</p>
+ * can extend the <code>TreeDropTargetEffect</code> class and override any applicable methods
+ * in <code>TreeDropTargetEffect</code> to display their own drag under effect.</p>
*
* Subclasses that override any methods of this class must call the corresponding
* <code>super</code> method to get the default drag under effect implementation.