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 SummaryFields Modifier and Type Field Description protected DropTargetContextcontextTheDropTargetContextassociated with thisDropTargetEvent.
- 
Constructor SummaryConstructors Constructor Description DropTargetEvent(DropTargetContext dtc)Construct aDropTargetEventobject with the specifiedDropTargetContext.
- 
Method SummaryModifier and Type Method Description DropTargetContextgetDropTargetContext()This method returns theDropTargetContextassociated with thisDropTargetEvent.
- 
Field Details- 
contextTheDropTargetContextassociated with thisDropTargetEvent.
 
- 
- 
Constructor Details- 
DropTargetEventConstruct aDropTargetEventobject with the specifiedDropTargetContext.- Parameters:
- dtc- The- DropTargetContext
- Throws:
- NullPointerException- if- dtcequals- null.
- See Also:
- EventObject.getSource(),- getDropTargetContext()
 
 
- 
- 
Method Details- 
getDropTargetContextThis method returns theDropTargetContextassociated with thisDropTargetEvent.- Returns:
- the DropTargetContext
 
 
-