Java Platform 1.2

java.awt.dnd
Class MouseDragGestureRecognizer

java.lang.Object
  |
  +--java.awt.dnd.DragGestureRecognizer
        |
        +--java.awt.dnd.MouseDragGestureRecognizer

public abstract class MouseDragGestureRecognizer
extends DragGestureRecognizer
implements MouseListener, MouseMotionListener

This abstract subclass of DragGestureRecognizer defines a DragGestureRecognizer for Mouse based gestures. Each platform will implement its own concrete subclass of this class, available via the Toolkit.createDragGestureRecognizer() method, to encapsulate the recognition of the platform dependent Mouse gesture(s) that initiate a Drag and Drop operation.

See Also:
DragGestureListener, DragGestureEvent, DragSource

Fields inherited from class java.awt.dnd.DragGestureRecognizer
component, dragGestureListener, dragSource, events, sourceActions
 
Constructor Summary
protected MouseDragGestureRecognizer(DragSource ds)
          construct a new MouseDragGestureRecognizer
protected MouseDragGestureRecognizer(DragSource ds, Component c)
          construct a new MouseDragGestureRecognizer
protected MouseDragGestureRecognizer(DragSource ds, Component c, int act)
          construct a new MouseDragGestureRecognizer
protected MouseDragGestureRecognizer(DragSource ds, Component c, int act, DragGestureListener dgl)
          construct a new MouseDragGestureRecognizer
 
Method Summary
 void mouseClicked(MouseEvent e)
          Invoked when the mouse has been clicked on a component.
 void mouseDragged(MouseEvent e)
          Invoked when a mouse button is pressed on a component.
 void mouseEntered(MouseEvent e)
          Invoked when the mouse enters a component.
 void mouseExited(MouseEvent e)
          Invoked when the mouse exits a component.
 void mouseMoved(MouseEvent e)
          Invoked when the mouse button has been moved on a component (with no buttons no down).
 void mousePressed(MouseEvent e)
          Invoked when a mouse button has been pressed on a component.
 void mouseReleased(MouseEvent e)
          Invoked when a mouse button has been released on a component.
protected  void registerListeners()
          register this DragGestureRecognizer's Listeners with the Component
protected  void unregisterListeners()
          unregister this DragGestureRecognizer's Listeners with the Component subclasses must override this method
 
Methods inherited from class java.awt.dnd.DragGestureRecognizer
addDragGestureListener, appendEvent, fireDragGestureRecognized, getComponent, getDragSource, getSourceActions, getTriggerEvent, removeDragGestureListener, resetRecognizer, setComponent, setSourceActions
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MouseDragGestureRecognizer

protected MouseDragGestureRecognizer(DragSource ds,
                                     Component c,
                                     int act,
                                     DragGestureListener dgl)
construct a new MouseDragGestureRecognizer
Parameters:
ds - The DragSource for the Component c
c - The Component to observe
act - The actions permitted for this Drag
dgl - The DragGestureRecognizer to notify when a gesture is detected

MouseDragGestureRecognizer

protected MouseDragGestureRecognizer(DragSource ds,
                                     Component c,
                                     int act)
construct a new MouseDragGestureRecognizer
Parameters:
ds - The DragSource for the Component c
c - The Component to observe
act - The actions permitted for this Drag

MouseDragGestureRecognizer

protected MouseDragGestureRecognizer(DragSource ds,
                                     Component c)
construct a new MouseDragGestureRecognizer
Parameters:
ds - The DragSource for the Component c
c - The Component to observe

MouseDragGestureRecognizer

protected MouseDragGestureRecognizer(DragSource ds)
construct a new MouseDragGestureRecognizer
Parameters:
ds - The DragSource for the Component c
Method Detail

registerListeners

protected void registerListeners()
register this DragGestureRecognizer's Listeners with the Component
Overrides:
registerListeners in class DragGestureRecognizer

unregisterListeners

protected void unregisterListeners()
unregister this DragGestureRecognizer's Listeners with the Component subclasses must override this method
Overrides:
unregisterListeners in class DragGestureRecognizer

mouseClicked

public void mouseClicked(MouseEvent e)
Invoked when the mouse has been clicked on a component.
Specified by:
mouseClicked in interface MouseListener

mousePressed

public void mousePressed(MouseEvent e)
Invoked when a mouse button has been pressed on a component.
Specified by:
mousePressed in interface MouseListener

mouseReleased

public void mouseReleased(MouseEvent e)
Invoked when a mouse button has been released on a component.
Specified by:
mouseReleased in interface MouseListener

mouseEntered

public void mouseEntered(MouseEvent e)
Invoked when the mouse enters a component.
Specified by:
mouseEntered in interface MouseListener

mouseExited

public void mouseExited(MouseEvent e)
Invoked when the mouse exits a component.
Specified by:
mouseExited in interface MouseListener

mouseDragged

public void mouseDragged(MouseEvent e)
Invoked when a mouse button is pressed on a component.
Specified by:
mouseDragged in interface MouseMotionListener

mouseMoved

public void mouseMoved(MouseEvent e)
Invoked when the mouse button has been moved on a component (with no buttons no down).
Specified by:
mouseMoved in interface MouseMotionListener

Java Platform 1.2

Submit a bug or feature Version 1.2 of Java Platform API Specification
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.