DropTargetEvent (Java SE 10 & JDK 10 )
- 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
DropTargetEventis the base class for both theDropTargetDragEventand 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 Description protected DropTargetContextcontextThe
DropTargetContextassociated with thisDropTargetEvent.-
Fields declared in class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description DropTargetEvent(DropTargetContext dtc)Construct a
DropTargetEventobject with the specifiedDropTargetContext.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DropTargetContextgetDropTargetContext()This method returns the
DropTargetContextassociated with thisDropTargetEvent.-
Methods declared in class java.util.EventObject
getSource, toString
-
-
-
-
Field Detail
-
context
protected DropTargetContext context
The
DropTargetContextassociated with thisDropTargetEvent.
-
-
Constructor Detail
-
DropTargetEvent
public DropTargetEvent(DropTargetContext dtc)
Construct a
DropTargetEventobject with the specifiedDropTargetContext.- Parameters:
dtc- TheDropTargetContext- Throws:
NullPointerException- ifdtcequalsnull.- See Also:
EventObject.getSource(),getDropTargetContext()
-
-
Method Detail
-
getDropTargetContext
public DropTargetContext getDropTargetContext()
This method returns the
DropTargetContextassociated with thisDropTargetEvent.- Returns:
- the
DropTargetContext
-
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2018, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.