Uses of Package
java.awt.dnd

Packages that use java.awt.dnd
Package
Description
Contains all of the classes for creating user interfaces and for painting graphics and images.
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.
  • Classes in java.awt.dnd used by java.awt
    Class
    Description
    The listener interface for receiving drag gesture events.
    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.
    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.
    The DropTarget is associated with a Component when that Component wishes to accept drops during Drag and Drop operations.
  • Classes in java.awt.dnd used by java.awt.dnd
    Class
    Description
    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.
    The listener interface for receiving drag gesture events.
    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.
    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.
    The DragSourceContext class is responsible for managing the initiator side of the Drag and Drop protocol.
    The DragSourceDragEvent is delivered from the DragSourceContextPeer, via the DragSourceContext, to the DragSourceListener registered with that DragSourceContext and with its associated DragSource.
    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.
    This class is the base class for DragSourceDragEvent and DragSourceDropEvent.
    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.
    A listener interface for receiving mouse motion events during a drag operation.
    The DropTarget is associated with a Component when that Component wishes to accept drops during Drag and Drop operations.
    this protected nested class implements autoscrolling
    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.
    The DropTargetDragEvent is delivered to a DropTargetListener via its dragEnter() and dragOver() methods.
    The DropTargetDropEvent is delivered via the DropTargetListener drop() method.
    The DropTargetEvent is the base class for both the DropTargetDragEvent and the DropTargetDropEvent.
    The DropTargetListener interface is the callback interface used by the DropTarget class to provide notification of DnD operations that involve the subject DropTarget.
    This exception is thrown by various methods in the java.awt.dnd package.