java.lang.Object
java.util.EventObject
java.awt.dnd.DropTargetEvent
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DropTargetDragEvent
,DropTargetDropEvent
public class DropTargetEvent extends EventObject
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
.- Since:
- 1.2
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected DropTargetContext
context
TheDropTargetContext
associated with thisDropTargetEvent
. -
Constructor Summary
Constructors Constructor Description DropTargetEvent(DropTargetContext dtc)
Construct aDropTargetEvent
object with the specifiedDropTargetContext
. -
Method Summary
Modifier and Type Method Description DropTargetContext
getDropTargetContext()
This method returns theDropTargetContext
associated with thisDropTargetEvent
.
-
Field Details
-
context
TheDropTargetContext
associated with thisDropTargetEvent
.
-
-
Constructor Details
-
DropTargetEvent
Construct aDropTargetEvent
object with the specifiedDropTargetContext
.- Parameters:
dtc
- TheDropTargetContext
- Throws:
NullPointerException
- ifdtc
equalsnull
.- See Also:
EventObject.getSource()
,getDropTargetContext()
-
-
Method Details
-
getDropTargetContext
This method returns theDropTargetContext
associated with thisDropTargetEvent
.- Returns:
- the
DropTargetContext
-