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
-
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).
-
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).
-
dragEnter(DragEvent)
- As the mouse entered the target component
-
dragExit(DragEvent)
- As the mouse exits the target component
-
dragOver(DragEvent)
- As the mouse is passing the target component
-
dragStart(DragEvent)
- As the drag is starting.
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
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
dragEnter
public abstract void dragEnter(DragEvent event)
- As the mouse entered the target component
- Parameters:
- event - com.ibm.dnd.DragEvent
dragExit
public abstract void dragExit(DragEvent event)
- As the mouse exits the target component
- Parameters:
- event - com.ibm.dnd.DragEvent
dragOver
public abstract void dragOver(DragEvent event)
- As the mouse is passing the target component
- Parameters:
- event - com.ibm.dnd.DragEvent
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