root/dwt/dnd/DragSourceAdapter.d

Revision 246:fd9c62a2998e, 2.0 kB (checked in by Frank Benoit <benoit@tionex.de>, 6 months ago)

Updater SWT 3.4M7 to 3.4

Line 
1 /*******************************************************************************
2  * Copyright (c) 2000, 2008 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  * Port to the D programming language:
11  *     Frank Benoit <benoit@tionex.de>
12  *******************************************************************************/
13 module dwt.dnd.DragSourceAdapter;
14
15 import dwt.dnd.DragSourceListener;
16 import dwt.dnd.DragSourceEvent;
17
18 /**
19  * This adapter class provides default implementations for the
20  * methods described by the <code>DragSourceListener</code> interface.
21  *
22  * <p>Classes that wish to deal with <code>DragSourceEvent</code>s can
23  * extend this class and override only the methods which they are
24  * interested in.</p>
25  *
26  * @see DragSourceListener
27  * @see DragSourceEvent
28  * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
29  */
30 public class DragSourceAdapter : DragSourceListener {
31
32 /**
33  * This implementation of <code>dragStart</code> permits the drag operation to start.
34  * For additional information see <code>DragSourceListener.dragStart</code>.
35  *
36  * @param event the information associated with the drag start event
37  */
38 public void dragStart(DragSourceEvent event){}
39
40 /**
41  * This implementation of <code>dragFinished</code> does nothing.
42  * For additional information see <code>DragSourceListener.dragFinished</code>.
43  *
44  * @param event the information associated with the drag finished event
45  */
46 public void dragFinished(DragSourceEvent event){}
47
48 /**
49  * This implementation of <code>dragSetData</code> does nothing.
50  * For additional information see <code>DragSourceListener.dragSetData</code>.
51  *
52  * @param event the information associated with the drag set data event
53  */
54 public void dragSetData(DragSourceEvent event){}
55
56 }
Note: See TracBrowser for help on using the browser.