DragSourceEvent (Java SE 10 & JDK 10 )
- java.lang.Object
-
- java.util.EventObject
-
- java.awt.dnd.DragSourceEvent
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DragSourceDragEvent,DragSourceDropEvent
public class DragSourceEvent extends EventObject
This class is the base class for
DragSourceDragEventandDragSourceDropEvent.DragSourceEvents are generated whenever the drag enters, moves over, or exits a drop site, when the drop action changes, and when the drag ends. The location for the generatedDragSourceEventspecifies the mouse cursor location in screen coordinates at the moment this event occurred.In a multi-screen environment without a virtual device, the cursor location is specified in the coordinate system of the initiator
GraphicsConfiguration. The initiatorGraphicsConfigurationis theGraphicsConfigurationof theComponenton which the drag gesture for the current drag operation was recognized. If the cursor location is outside the bounds of the initiatorGraphicsConfiguration, the reported coordinates are clipped to fit within the bounds of thatGraphicsConfiguration.In a multi-screen environment with a virtual device, the location is specified in the corresponding virtual coordinate system. If the cursor location is outside the bounds of the virtual device the reported coordinates are clipped to fit within the bounds of the virtual device.
- Since:
- 1.2
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields declared in class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description DragSourceEvent(DragSourceContext dsc)Construct a
DragSourceEventgiven a specifiedDragSourceContext.DragSourceEvent(DragSourceContext dsc, int x, int y)Construct a
DragSourceEventgiven a specifiedDragSourceContext, and coordinates of the cursor location.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DragSourceContextgetDragSourceContext()This method returns the
DragSourceContextthat originated the event.PointgetLocation()This method returns a
Pointindicating the cursor location in screen coordinates at the moment this event occurred, ornullif the cursor location is not specified for this event.intgetX()This method returns the horizontal coordinate of the cursor location in screen coordinates at the moment this event occurred, or zero if the cursor location is not specified for this event.
intgetY()This method returns the vertical coordinate of the cursor location in screen coordinates at the moment this event occurred, or zero if the cursor location is not specified for this event.
-
Methods declared in class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
DragSourceEvent
public DragSourceEvent(DragSourceContext dsc)
Construct a
DragSourceEventgiven a specifiedDragSourceContext. The coordinates for thisDragSourceEventare not specified, sogetLocationwill returnnullfor this event.- Parameters:
dsc- theDragSourceContext- Throws:
IllegalArgumentException- ifdscisnull.- See Also:
getLocation()
-
DragSourceEvent
public DragSourceEvent(DragSourceContext dsc, int x, int y)
Construct a
DragSourceEventgiven a specifiedDragSourceContext, and coordinates of the cursor location.- Parameters:
dsc- theDragSourceContextx- the horizontal coordinate for the cursor locationy- the vertical coordinate for the cursor location- Throws:
IllegalArgumentException- ifdscisnull.- Since:
- 1.4
-
-
Method Detail
-
getDragSourceContext
public DragSourceContext getDragSourceContext()
This method returns the
DragSourceContextthat originated the event.- Returns:
- the
DragSourceContextthat originated the event
-
getLocation
public Point getLocation()
This method returns a
Pointindicating the cursor location in screen coordinates at the moment this event occurred, ornullif the cursor location is not specified for this event.- Returns:
- the
Pointindicating the cursor location ornullif the cursor location is not specified - Since:
- 1.4
-
getX
public int getX()
This method returns the horizontal coordinate of the cursor location in screen coordinates at the moment this event occurred, or zero if the cursor location is not specified for this event.
- Returns:
- an integer indicating the horizontal coordinate of the cursor location or zero if the cursor location is not specified
- Since:
- 1.4
-
getY
public int getY()
This method returns the vertical coordinate of the cursor location in screen coordinates at the moment this event occurred, or zero if the cursor location is not specified for this event.
- Returns:
- an integer indicating the vertical coordinate of the cursor location or zero if the cursor location is not specified
- Since:
- 1.4
-
-
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2018, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.