org.eclipse.swt.dnd
Class DragSourceAdapter
java.lang.Object
|
+--org.eclipse.swt.dnd.DragSourceAdapter
- All Implemented Interfaces:
- DragSourceListener, EventListener, org.eclipse.swt.internal.SWTEventListener
- Direct Known Subclasses:
- NavigatorDragAdapter
- public class DragSourceAdapter
- extends Object
- implements DragSourceListener
This adapter class provides default implementations for the
methods described by the DragSourceListener
interface.
Classes that wish to deal with DragSourceEvent
s can
extend this class and override only the methods which they are
interested in.
- See Also:
DragSourceListener
,
DragSourceEvent
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DragSourceAdapter
public DragSourceAdapter()
dragStart
public void dragStart(DragSourceEvent event)
- This implementation of
dragStart
permits the drag operation to start.
For additional information see DragSourceListener.dragStart
.
- Specified by:
dragStart
in interface DragSourceListener
- Following copied from interface:
org.eclipse.swt.dnd.DragSourceListener
- Parameters:
event
- the information associated with the drag start event- See Also:
DragSourceEvent
dragFinished
public void dragFinished(DragSourceEvent event)
- This implementation of
dragFinished
does nothing.
For additional information see DragSourceListener.dragFinished
.
- Specified by:
dragFinished
in interface DragSourceListener
- Following copied from interface:
org.eclipse.swt.dnd.DragSourceListener
- Parameters:
event
- the information associated with the drag finished event- See Also:
DragSourceEvent
dragSetData
public void dragSetData(DragSourceEvent event)
- This implementation of
dragSetData
does nothing.
For additional information see DragSourceListener.dragSetData
.
- Specified by:
dragSetData
in interface DragSourceListener
- Following copied from interface:
org.eclipse.swt.dnd.DragSourceListener
- Parameters:
event
- the information associated with the drag set data event- See Also:
DragSourceEvent
Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.