Show
Ignore:
Timestamp:
07/01/08 04:15:59 (6 months ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Updater SWT 3.4M7 to 3.4

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/dnd/DropTargetAdapter.d

    r135 r246  
    11/******************************************************************************* 
    2  * Copyright (c) 2000, 2004 IBM Corporation and others. 
     2 * Copyright (c) 2000, 2008 IBM Corporation and others. 
    33 * All rights reserved. This program and the accompanying materials 
    44 * are made available under the terms of the Eclipse Public License v1.0 
     
    2727 * @see DropTargetListener 
    2828 * @see DropTargetEvent 
     29 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a> 
    2930 */ 
    3031public class DropTargetAdapter : DropTargetListener { 
     
    3536 * defined in <code>event.currentDataType</code>. 
    3637 * For additional information see <code>DropTargetListener.dragEnter</code>. 
     38 *  
     39 * @param event the information associated with the drag enter event 
    3740 */ 
    3841public void dragEnter(DropTargetEvent event){} 
     42 
    3943/** 
    4044 * This implementation of <code>dragLeave</code> does nothing. 
    4145 * For additional information see <code>DropTargetListener.dragOperationChanged</code>. 
     46 *  
     47 * @param event the information associated with the drag leave event 
    4248 */ 
    4349public void dragLeave(DropTargetEvent event){} 
     50 
    4451/** 
    4552 * This implementation of <code>dragOperationChanged</code> permits the default 
     
    4754 * defined in <code>event.currentDataType</code>. 
    4855 * For additional information see <code>DropTargetListener.dragOperationChanged</code>. 
     56 *  
     57 * @param event the information associated with the drag operation changed event 
    4958 */ 
    5059public void dragOperationChanged(DropTargetEvent event){} 
     60 
    5161/** 
    5262 * This implementation of <code>dragOver</code> permits the default 
     
    5464 * defined in <code>event.currentDataType</code>. 
    5565 * For additional information see <code>DropTargetListener.dragOver</code>. 
     66 *  
     67 * @param event the information associated with the drag over event 
    5668 */ 
    5769public void dragOver(DropTargetEvent event){} 
     70 
    5871/** 
    5972 * This implementation of <code>drop</code> does nothing. 
    6073 * For additional information see <code>DropTargetListener.drop</code>. 
     74 *  
     75 * @param event the information associated with the drop event 
    6176 */ 
    6277public void drop(DropTargetEvent event){} 
     78 
    6379/** 
    6480 * This implementation of <code>dropAccept</code> permits the default 
     
    6682 * defined in <code>event.currentDataType</code>. 
    6783 * For additional information see <code>DropTargetListener.dropAccept</code>. 
     84 *  
     85 * @param event the information associated with the drop accept event 
    6886 */ 
    6987public void dropAccept(DropTargetEvent event){}