comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/dnd/DragSourceAdapter.d @ 0:6dd524f61e62

add dwt win and basic java stuff
author Frank Benoit <benoit@tionex.de>
date Mon, 02 Mar 2009 14:44:16 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:6dd524f61e62
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 org.eclipse.swt.dnd.DragSourceAdapter;
14
15 import org.eclipse.swt.dnd.DragSourceListener;
16 import org.eclipse.swt.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 }