java.lang.Object
java.util.EventObject
java.awt.dnd.DropTargetEvent
- 所有已实现的接口:
-
Serializable
- 直接已知的子类:
-
DropTargetDragEvent
,DropTargetDropEvent
DropTargetEvent
是DropTargetDragEvent
和DropTargetDropEvent
的基类。它封装了当前拖放操作的状态,特别是当前的DropTargetContext
。
- 自版本:
- 1.2
- 参见:
-
Field Summary
Modifier and TypeFieldDescriptionprotected DropTargetContext
与此DropTargetEvent
相关联的DropTargetContext
。Fields declared in class java.util.EventObject
source
-
Constructor Summary
ConstructorDescription用指定的DropTargetContext
构造一个DropTargetEvent
对象。 -
Method Summary
Modifier and TypeMethodDescription此方法返回与此DropTargetEvent
相关联的DropTargetContext
。Methods declared in class java.util.EventObject
getSource, toString
-
Field Details
-
context
与此DropTargetEvent
相关联的DropTargetContext
。
-
-
Constructor Details
-
DropTargetEvent
用指定的DropTargetContext
构造一个DropTargetEvent
对象。- 参数:
-
dtc
-DropTargetContext
- 抛出:
-
NullPointerException
- 如果dtc
等于null
。 - 参见:
-
-
Method Details
-
getDropTargetContext
此方法返回与此DropTargetEvent
相关联的DropTargetContext
。- 返回:
-
DropTargetContext
-