java命名空间java.awt.dnd类droptargetdropevent的类成员方法:
droptargetdropevent定义及介绍
本文导语:
droptargetdropevent
public droptargetdropevent(droptargetcontext dtc,
point cursorlocn,
int dropaction,
int srcactions,
boolean islocal)
在给出此操作的 droptargetcontext、compo...
droptargetdropevent
public droptargetdropevent(droptargetcontext dtc,
point cursorlocn,
int dropaction,
int srcactions,
boolean islocal)
- 在给出此操作的
droptargetcontext
、component
的坐标中 drag cursor
的热点位置、目前选择的用户 drop 操作、当前受源对象支持的操作集合,以及一个指示源对象与目标对象是否在同一 jvm 中的 boolean
值的情况下,构造一个 droptargetevent
。
- 参数:
dtc
- 此操作的 droptargetcontextcursorlocn
- component 坐标中 "drag" cursor 的热点位置dropaction
- 用户 drop 操作。srcactions
- 源 drop 操作。islocal
- 如果源对象与目标对象在同一 jvm 中,则为 true
- 抛出:
nullpointerexception
- 如果 cursorlocn 为 null
illegalargumentexception
- 如果 dropaction 不是 dndconstants
之一。
illegalargumentexception
- 如果 srcaction 不是 dndconstants
的位掩码。
illegalargumentexception
- 如果 dtc 为 null
。
getlocation
public point getlocation()
- 此方法返回一个
point
,指示 component
坐标中 cursor
的当前位置。
- 返回:
- component 坐标中
cursor
的当前位置。