All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.ibm.dnd.DragListener

public interface DragListener
extends EventListener
The event set listener interface for the dragEvent event


Method Index

 o dragDropEndFailed(DragEvent)
As a drop has failed (when an object is dropped on some target, which does not support either the Drag and Drop mechanism or the type of the object dropped).
 o dragDropEndOk(DragEvent)
As a drop has finished successfully (when an object is dropped on the some target, which accepts the type of the object dropped).
 o dragEnter(DragEvent)
As the mouse entered the target component
 o dragExit(DragEvent)
As the mouse exits the target component
 o dragOver(DragEvent)
As the mouse is passing the target component
 o dragStart(DragEvent)
As the drag is starting.

Methods

 o dragDropEndFailed
 public abstract void dragDropEndFailed(DragEvent event)
As a drop has failed (when an object is dropped on some target, which does not support either the Drag and Drop mechanism or the type of the object dropped).

Parameters:
event - com.ibm.dnd.DragEvent
 o dragDropEndOk
 public abstract void dragDropEndOk(DragEvent event)
As a drop has finished successfully (when an object is dropped on the some target, which accepts the type of the object dropped).

Parameters:
event - com.ibm.dnd.DragEvent
 o dragEnter
 public abstract void dragEnter(DragEvent event)
As the mouse entered the target component

Parameters:
event - com.ibm.dnd.DragEvent
 o dragExit
 public abstract void dragExit(DragEvent event)
As the mouse exits the target component

Parameters:
event - com.ibm.dnd.DragEvent
 o dragOver
 public abstract void dragOver(DragEvent event)
As the mouse is passing the target component

Parameters:
event - com.ibm.dnd.DragEvent
 o dragStart
 public abstract void dragStart(DragEvent event)
As the drag is starting. This event is fired first so that it is possible to use it to set some data, for example, the object to drag.

Parameters:
event - com.ibm.dnd.DragEvent

All Packages  Class Hierarchy  This Package  Previous  Next  Index