API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.awt.dnd. DropTargetListener View Source
Author(s)
Since
1.2
Version
1.23, 11/17/05
Serial
Hierarchy
 EventListener
      DropTargetListener
Subinterfaces
Description
public interface DropTargetListener
  The DropTargetListener interface is the callback interface used by the DropTarget class to provide notification of DnD operations that involve the subject DropTarget.
See also:   
Methods
Hide/Show inherited methods
public void dragEnter (DropTargetDragEvent dtde)
  Called while a drag operation is ongoing, when the mouse pointer enters the operable part of the drop site for the DropTarget registered with this listener.
public void dragExit (DropTargetEvent dte)
  Called while a drag operation is ongoing, when the mouse pointer has exited the operable part of the drop site for the DropTarget registered with this listener.
public void dragOver (DropTargetDragEvent dtde)
  Called when a drag operation is ongoing, while the mouse pointer is still over the operable part of the drop site for the DropTarget registered with this listener.
public void drop (DropTargetDropEvent dtde)
  Called when the drag operation has terminated with a drop on the operable part of the drop site for the DropTarget registered with this listener.
public void dropActionChanged (DropTargetDragEvent dtde)
  Called if the user has modified the current drop gesture.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar