This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.awt.dnd
class DragSourceEvent

java.lang.Object extended by java.util.EventObject extended by 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 DragSourceDragEvent and DragSourceDropEvent.

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 generated DragSourceEvent specifies the mouse cursor location in screen coordinates at the moment this event occured.

In a multi-screen environment without a virtual device, the cursor location is specified in the coordinate system of the initiator GraphicsConfiguration. The initiator GraphicsConfiguration is the GraphicsConfiguration of the Component on which the drag gesture for the current drag operation was recognized. If the cursor location is outside the bounds of the initiator GraphicsConfiguration, the reported coordinates are clipped to fit within the bounds of that GraphicsConfiguration.

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.


Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary

          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

          This method returns the DragSourceContext that originated the event.
 Point

          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

          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

          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, toString, wait, wait, wait
 

Constructor Detail

DragSourceEvent

public DragSourceEvent(DragSourceContext dsc)
Construct a DragSourceEvent given a specified DragSourceContext. The coordinates for this DragSourceEvent are not specified, so getLocation will return null for this event.

Parameters:
dsc - the DragSourceContext

DragSourceEvent

public DragSourceEvent(DragSourceContext dsc,
                       int x,
                       int y)
Construct a DragSourceEvent given a specified DragSourceContext, and coordinates of the cursor location.

Parameters:
dsc - the DragSourceContext
x - the horizontal coordinate for the cursor location
y - the vertical coordinate for the cursor location
Method Detail

getDragSourceContext

public DragSourceContext getDragSourceContext()
This method returns the DragSourceContext that originated the event.

Returns:
the DragSourceContext that originated the event

getLocation

public 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.

Returns:
the Point indicating the cursor location or null if the cursor location is not specified

getX

public 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.

Returns:
an integer indicating the horizontal coordinate of the cursor location or zero if the cursor location is not specified

getY

public 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.

Returns:
an integer indicating the vertical coordinate of the cursor location or zero if the cursor location is not specified


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.