diff options
-rw-r--r-- | bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/events/DragDetectListener.java | 17 |
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 |