Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarsten Thoms2020-09-02 19:21:48 +0000
committerKarsten Thoms2020-09-09 23:36:11 +0000
commit27bc75f3a72125f304fe48f681ea77271940ef28 (patch)
tree2cb6e9266d9d710ac3b1fb18fd6bcac96df8dc1c
parentc75b8454adbe05c5311fe21ea154341cf2ab136f (diff)
downloadeclipse.platform.swt-27bc75f3a72125f304fe48f681ea77271940ef28.tar.gz
eclipse.platform.swt-27bc75f3a72125f304fe48f681ea77271940ef28.tar.xz
eclipse.platform.swt-27bc75f3a72125f304fe48f681ea77271940ef28.zip
[javadoc] Fix typo add method link
Change-Id: Iad6314351b653245ac62f6bfa4fa7d5c40ca7119 Signed-off-by: Karsten Thoms <karsten.thoms@karakun.com>
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DragDetectListener.java17
1 files changed, 8 insertions, 9 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DragDetectListener.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DragDetectListener.java
index bfdf19d410..1f5f54b4b6 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DragDetectListener.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DragDetectListener.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2016 IBM Corporation and others.
+ * Copyright (c) 2000, 2020 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -18,15 +18,14 @@ package org.eclipse.swt.events;
import org.eclipse.swt.internal.*;
/**
- * Classes which implement this interface provide methods
- * that deal with the events that are generated when a drag
- * gesture is detected.
+ * Classes which implement this interface provide methods that deal with the
+ * events that are generated when a drag gesture is detected.
* <p>
- * After creating an instance of a class that implements
- * this interface it can be added to a control using the
- * <code>addDragDetectListener</code> method and removed using
- * the <code>removeDragDetectListener</code> method. When the
- * drag is detected, the drageDetected method will be invoked.
+ * After creating an instance of a class that implements this interface it can
+ * be added to a control using the <code>addDragDetectListener</code> method and
+ * removed using the <code>removeDragDetectListener</code> method. When the drag
+ * is detected, the {@link #dragDetected(DragDetectEvent) dragDetected} method
+ * will be invoked.
* </p>
*
* @see DragDetectEvent

Back to the top