java.awt.dnd
public abstract class DropTargetAdapter extends Object implements DropTargetListener
DropTargetListener
, and implements all methods
with empty bodies. This allows a listener interested in implementing only
a subset of these interfaces to extend this class and override only the
desired methods.Constructor and Description |
---|
DropTargetAdapter()
Default constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
dragEnter(DropTargetDragEvent e)
Called when the cursor hotspot enters a drop site which will accept the
drag.
|
void |
dragExit(DropTargetEvent e)
Called when the cursor hotspot moves outside of a drop site which will
accept the drag.
|
void |
dragOver(DropTargetDragEvent e)
Called when the cursor hotspot moves inside of a drop site which will
accept the drag.
|
void |
dropActionChanged(DropTargetDragEvent e)
Called when the user modifies the drop gesture.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
drop
public DropTargetAdapter()
public void dragEnter(DropTargetDragEvent e)
dragEnter
in interface DropTargetListener
e
- the eventpublic void dragOver(DropTargetDragEvent e)
dragOver
in interface DropTargetListener
e
- the eventpublic void dropActionChanged(DropTargetDragEvent e)
dropActionChanged
in interface DropTargetListener
e
- the eventpublic void dragExit(DropTargetEvent e)
dragExit
in interface DropTargetListener
e
- the event