comparison dwt/dnd/DragSourceAdapter.d @ 135:242e33c0e383

Added dnd source, ByteArrayTransfer,Clipboard completed
author Frank Benoit <benoit@tionex.de>
date Wed, 13 Feb 2008 04:51:22 +0100
parents
children fd9c62a2998e
comparison
equal deleted inserted replaced
134:fa7d7d66b9ed 135:242e33c0e383
1 /*******************************************************************************
2 * Copyright (c) 2000, 2004 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 */
29 public class DragSourceAdapter : DragSourceListener {
30 /**
31 * This implementation of <code>dragStart</code> permits the drag operation to start.
32 * For additional information see <code>DragSourceListener.dragStart</code>.
33 */
34 public void dragStart(DragSourceEvent event){}
35 /**
36 * This implementation of <code>dragFinished</code> does nothing.
37 * For additional information see <code>DragSourceListener.dragFinished</code>.
38 */
39 public void dragFinished(DragSourceEvent event){}
40 /**
41 * This implementation of <code>dragSetData</code> does nothing.
42 * For additional information see <code>DragSourceListener.dragSetData</code>.
43 */
44 public void dragSetData(DragSourceEvent event){}
45 }