diff dwt/dnd/DragSourceAdapter.d @ 95:52007db1276d

Ported dwt.dnd.DragSource
author Jacob Carlborg <doob@me.com>
date Tue, 30 Dec 2008 20:51:17 +0100
parents d8635bb48c7c
children
line wrap: on
line diff
--- a/dwt/dnd/DragSourceAdapter.d	Tue Dec 30 19:12:22 2008 +0100
+++ b/dwt/dnd/DragSourceAdapter.d	Tue Dec 30 20:51:17 2008 +0100
@@ -7,12 +7,18 @@
  *
  * Contributors:
  *     IBM Corporation - initial API and implementation
+ *     
+ * Port to the D programming language:
+ *     Jacob Carlborg <doob@me.com>
  *******************************************************************************/
 module dwt.dnd.DragSourceAdapter;
 
 import dwt.dwthelper.utils;
 
 
+import dwt.dnd.DragSourceEvent;
+import dwt.dnd.DragSourceListener;
+
 /**
  * This adapter class provides default implementations for the
  * methods described by the <code>DragSourceListener</code> interface.
@@ -25,7 +31,7 @@
  * @see DragSourceEvent
  * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
  */
-public class DragSourceAdapter implements DragSourceListener {
+public class DragSourceAdapter : DragSourceListener {
 
 /**
  * This implementation of <code>dragStart</code> permits the drag operation to start.