java.awt.dnd
public class: DropTargetEvent [javadoc |
source]
java.lang.Object
java.util.EventObject
java.awt.dnd.DropTargetEvent
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
DropTargetDropEvent, DropTargetDragEvent
The
DropTargetEvent is the base
class for both the
DropTargetDragEvent
and the
DropTargetDropEvent.
It encapsulates the current state of the Drag and
Drop operations, in particular the current
DropTargetContext.
| Field Summary |
|---|
| protected DropTargetContext | context | The DropTargetContext associated with this
DropTargetEvent. |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from java.awt.dnd.DropTargetEvent Detail: |
public DropTargetContext getDropTargetContext() {
return context;
}
This method returns the DropTargetContext
associated with this DropTargetEvent.
|