API Overview API Index Direct link to this page
JDK 1.6
  Package: java.awt.dnd
Author(s)
Since
1.2
Version
Serial
Description
  Drag and Drop is a direct manipulation gesture found in many Graphical User Interface systems that provides a mechanism to transfer information between two entities logically associated with presentation elements in the GUI.
See also:   
Autoscroll View Source During DnD operations it is possible that a user may wish to drop the subject of the operation on a region of a scrollable GUI control that is not currently visible to the user.
DnDConstants View Source This class contains constant values representing the type of action(s) to be performed by a Drag and Drop operation.
DragGestureEvent View Source A DragGestureEvent is passed to DragGestureListener's dragGestureRecognized() method when a particular DragGestureRecognizer detects that a platform dependent drag initiating gesture has occurred on the Component that it is tracking.
DragGestureListener View Source This interface is sourced from a DragGestureRecognizer and is invoked when an object of that (sub)class detects a drag initiating gesture.
DragGestureRecognizer View Source The DragGestureRecognizer is an abstract base class for the specification of a platform-dependent listener that can be associated with a particular Component in order to identify platform-dependent drag initiating gestures.
DragSource View Source The DragSource is the entity responsible for the initiation of the Drag and Drop operation, and may be used in a number of scenarios: 1 default instance per JVM for the lifetime of that JVM.
DragSourceAdapter View Source An abstract adapter class for receiving drag source events.
DragSourceContext View Source The DragSourceContext class is responsible for managing the initiator side of the Drag and Drop protocol.
DragSourceDragEvent View Source The DragSourceDragEvent is delivered from the DragSourceContextPeer, via the DragSourceContext, to the DragSourceListener registered with that DragSourceContext and with its associated DragSource.
DragSourceDropEvent View Source The DragSourceDropEvent is delivered from the DragSourceContextPeer, via the DragSourceContext, to the dragDropEnd method of DragSourceListeners registered with that DragSourceContext and with its associated DragSource.
DragSourceEvent View Source This class is the base class for DragSourceDragEvent and DragSourceDropEvent.
DragSourceListener View Source The DragSourceListener defines the event interface for originators of Drag and Drop operations to track the state of the user's gesture, and to provide appropriate "drag over" feedback to the user throughout the Drag and Drop operation.
DragSourceMotionListener View Source A listener interface for receiving mouse motion events during a drag operation.
DropTarget View Source The DropTarget is associated with a Component when that Component wishes to accept drops during Drag and Drop operations.
DropTarget.DropTargetAutoScroller View Source this protected nested class implements autoscrolling
DropTargetAdapter View Source An abstract adapter class for receiving drop target events.
DropTargetContext View Source A DropTargetContext is created whenever the logical cursor associated with a Drag and Drop operation coincides with the visible geometry of a Component associated with a DropTarget.
DropTargetContext.TransferableProxy View Source TransferableProxy is a helper inner class that implements Transferable interface and serves as a proxy for another Transferable object which represents data transfer for a particular drag-n-drop operation.
DropTargetDragEvent View Source The DropTargetDragEvent is delivered to a DropTargetListener via its dragEnter() and dragOver() methods.
DropTargetDropEvent View Source The DropTargetDropEvent is delivered via the DropTargetListener drop() method.
DropTargetEvent View Source The DropTargetEvent is the base class for both the DropTargetDragEvent and the DropTargetDropEvent.
DropTargetListener View Source The DropTargetListener interface is the callback interface used by the DropTarget class to provide notification of DnD operations that involve the subject DropTarget.
InvalidDnDOperationException View Source This exception is thrown by various methods in the java.awt.dnd package.
MouseDragGestureRecognizer View Source This abstract subclass of DragGestureRecognizer defines a DragGestureRecognizer for mouse-based gestures.
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar