Changeset 246:fd9c62a2998e for dwt/dnd/DropTargetAdapter.d
- Timestamp:
- 07/01/08 04:15:59 (6 months ago)
- Files:
-
- dwt/dnd/DropTargetAdapter.d (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dwt/dnd/DropTargetAdapter.d
r135 r246 1 1 /******************************************************************************* 2 * Copyright (c) 2000, 200 4IBM Corporation and others.2 * Copyright (c) 2000, 2008 IBM Corporation and others. 3 3 * All rights reserved. This program and the accompanying materials 4 4 * are made available under the terms of the Eclipse Public License v1.0 … … 27 27 * @see DropTargetListener 28 28 * @see DropTargetEvent 29 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a> 29 30 */ 30 31 public class DropTargetAdapter : DropTargetListener { … … 35 36 * defined in <code>event.currentDataType</code>. 36 37 * For additional information see <code>DropTargetListener.dragEnter</code>. 38 * 39 * @param event the information associated with the drag enter event 37 40 */ 38 41 public void dragEnter(DropTargetEvent event){} 42 39 43 /** 40 44 * This implementation of <code>dragLeave</code> does nothing. 41 45 * For additional information see <code>DropTargetListener.dragOperationChanged</code>. 46 * 47 * @param event the information associated with the drag leave event 42 48 */ 43 49 public void dragLeave(DropTargetEvent event){} 50 44 51 /** 45 52 * This implementation of <code>dragOperationChanged</code> permits the default … … 47 54 * defined in <code>event.currentDataType</code>. 48 55 * For additional information see <code>DropTargetListener.dragOperationChanged</code>. 56 * 57 * @param event the information associated with the drag operation changed event 49 58 */ 50 59 public void dragOperationChanged(DropTargetEvent event){} 60 51 61 /** 52 62 * This implementation of <code>dragOver</code> permits the default … … 54 64 * defined in <code>event.currentDataType</code>. 55 65 * For additional information see <code>DropTargetListener.dragOver</code>. 66 * 67 * @param event the information associated with the drag over event 56 68 */ 57 69 public void dragOver(DropTargetEvent event){} 70 58 71 /** 59 72 * This implementation of <code>drop</code> does nothing. 60 73 * For additional information see <code>DropTargetListener.drop</code>. 74 * 75 * @param event the information associated with the drop event 61 76 */ 62 77 public void drop(DropTargetEvent event){} 78 63 79 /** 64 80 * This implementation of <code>dropAccept</code> permits the default … … 66 82 * defined in <code>event.currentDataType</code>. 67 83 * For additional information see <code>DropTargetListener.dropAccept</code>. 84 * 85 * @param event the information associated with the drop accept event 68 86 */ 69 87 public void dropAccept(DropTargetEvent event){}
