java.awt.dnd
Class DropTargetEvent
- java.lang.Object
-
- java.util.EventObject
-
- java.awt.dnd.DropTargetEvent
-
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- DropTargetDragEvent, DropTargetDropEvent
public class DropTargetEvent extends EventObject
TheDropTargetEvent
is the base class for both theDropTargetDragEvent
and theDropTargetDropEvent
. It encapsulates the current state of the Drag and Drop operations, in particular the currentDropTargetContext
.- Since:
- 1.2
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description protected DropTargetContext
context
TheDropTargetContext
associated with thisDropTargetEvent
.-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor and Description DropTargetEvent(DropTargetContext dtc)
Construct aDropTargetEvent
object with the specifiedDropTargetContext
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description DropTargetContext
getDropTargetContext()
This method returns theDropTargetContext
associated with thisDropTargetEvent
.-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Field Detail
context
protected DropTargetContext context
TheDropTargetContext
associated with thisDropTargetEvent
.
-
Constructor Detail
DropTargetEvent
public DropTargetEvent(DropTargetContext dtc)
Construct aDropTargetEvent
object with the specifiedDropTargetContext
.- Parameters:
-
dtc
- TheDropTargetContext
- Throws:
-
NullPointerException
- ifdtc
equalsnull
. - See Also:
-
EventObject.getSource()
,getDropTargetContext()
-
Method Detail
getDropTargetContext
public DropTargetContext getDropTargetContext()
This method returns theDropTargetContext
associated with thisDropTargetEvent
.- Returns:
-
the
DropTargetContext
-
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2022, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.