protected class

BasicSplitPaneDivider.MouseHandler

extends MouseAdapter
implements MouseMotionListener
java.lang.Object
   ↳ java.awt.event.MouseAdapter
     ↳ javax.swing.plaf.basic.BasicSplitPaneDivider.MouseHandler

Class Overview

MouseHandler is responsible for converting mouse events (released, dragged...) into the appropriate DragController methods.

Summary

Protected Constructors
BasicSplitPaneDivider.MouseHandler()
Public Methods
void mouseDragged(MouseEvent e)
If dragger is not null it is messaged with continueDrag.
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)
Resets the cursor based on the orientation.
void mousePressed(MouseEvent e)
Starts the dragging session by creating the appropriate instance of DragController.
void mouseReleased(MouseEvent e)
If dragger is not null it is messaged with completeDrag.
[Expand]
Inherited Methods
From class java.awt.event.MouseAdapter
From class java.lang.Object
From interface java.awt.event.MouseListener
From interface java.awt.event.MouseMotionListener
From interface java.awt.event.MouseWheelListener

Protected Constructors

protected BasicSplitPaneDivider.MouseHandler ()

Public Methods

public void mouseDragged (MouseEvent e)

If dragger is not null it is messaged with continueDrag.

public void mouseEntered (MouseEvent e)

Invoked when the mouse enters a component.

Parameters
e MouseEvent describing the details of the enter event.

public void mouseExited (MouseEvent e)

Invoked when the mouse exits a component.

Parameters
e MouseEvent describing the details of the exit event.

public void mouseMoved (MouseEvent e)

Resets the cursor based on the orientation.

public void mousePressed (MouseEvent e)

Starts the dragging session by creating the appropriate instance of DragController.

public void mouseReleased (MouseEvent e)

If dragger is not null it is messaged with completeDrag.