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/DragSourceAdapter.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 
     
    2626 * @see DragSourceListener 
    2727 * @see DragSourceEvent 
     28 * @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a> 
    2829 */ 
    2930public 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){} 
     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 */ 
     38public 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 */ 
     46public 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 */ 
     54public void dragSetData(DragSourceEvent event){} 
     55 
    4556}