- java.lang.Object
- 
- java.util.EventObject
- 
- java.awt.dnd.DropTargetEvent
 
 
- 
- All Implemented Interfaces:
- Serializable
 - Direct Known Subclasses:
- DropTargetDragEvent,- DropTargetDropEvent
 
 public class DropTargetEvent extends EventObject TheDropTargetEventis 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 SummaryFields Modifier and Type Field Description protected DropTargetContextcontextTheDropTargetContextassociated with thisDropTargetEvent.- 
Fields declared in class java.util.EventObjectsource
 
- 
 - 
Constructor SummaryConstructors Constructor Description DropTargetEvent(DropTargetContext dtc)Construct aDropTargetEventobject with the specifiedDropTargetContext.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description DropTargetContextgetDropTargetContext()This method returns theDropTargetContextassociated with thisDropTargetEvent.- 
Methods declared in class java.util.EventObjectgetSource, toString
 
- 
 
- 
- 
- 
Field Detail- 
contextprotected DropTargetContext context TheDropTargetContextassociated with thisDropTargetEvent.
 
- 
 - 
Constructor Detail- 
DropTargetEventpublic DropTargetEvent(DropTargetContext dtc) Construct aDropTargetEventobject with the specifiedDropTargetContext.- Parameters:
- dtc- The- DropTargetContext
- Throws:
- NullPointerException- if- dtcequals- null.
- See Also:
- EventObject.getSource(),- getDropTargetContext()
 
 
- 
 - 
Method Detail- 
getDropTargetContextpublic DropTargetContext getDropTargetContext() This method returns theDropTargetContextassociated with thisDropTargetEvent.- Returns:
- the DropTargetContext
 
 
- 
 
-