|
Préférences
Moteurs de recherche
|
|||||||||||||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
java.awt.dnd
|
Field Summary |
---|
Fields inherited from class java.util.EventObject |
---|
source |
Constructor Summary | |
---|---|
DragSourceEvent(DragSourceContext dsc)
Construct a DragSourceEvent
given a specified DragSourceContext . |
|
DragSourceEvent(DragSourceContext dsc,
int x,
int y)
Construct a DragSourceEvent given a specified
DragSourceContext , and coordinates of the cursor
location. |
Method Summary | |
---|---|
DragSourceContext |
getDragSourceContext()
This method returns the DragSourceContext that
originated the event. |
Point |
getLocation()
This method returns a Point indicating the cursor
location in screen coordinates at the moment this event occured, or
null if the cursor location is not specified for this
event. |
int |
getX()
This method returns the horizontal coordinate of the cursor location in screen coordinates at the moment this event occured, or zero if the cursor location is not specified for this event. |
int |
getY()
This method returns the vertical coordinate of the cursor location in screen coordinates at the moment this event occured, or zero if the cursor location is not specified for this event. |
Methods inherited from class java.util.EventObject |
---|
getSource, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public DragSourceEvent(DragSourceContext dsc)
DragSourceEvent
given a specified DragSourceContext
.
The coordinates for this DragSourceEvent
are not specified, so getLocation
will return
null
for this event.
dsc
- the DragSourceContext
IllegalArgumentException
- if dsc
is null
.getLocation()
public DragSourceEvent(DragSourceContext dsc, int x, int y)
DragSourceEvent
given a specified
DragSourceContext
, and coordinates of the cursor
location.
dsc
- the DragSourceContext
x
- the horizontal coordinate for the cursor locationy
- the vertical coordinate for the cursor location
IllegalArgumentException
- if dsc
is null
.Method Detail |
---|
public DragSourceContext getDragSourceContext()
DragSourceContext
that
originated the event.
DragSourceContext
that originated the eventpublic Point getLocation()
Point
indicating the cursor
location in screen coordinates at the moment this event occured, or
null
if the cursor location is not specified for this
event.
Point
indicating the cursor location
or null
if the cursor location is not specifiedpublic int getX()
public int getY()