javax.swing.plaf.basic
public class: BasicTreeUI.MouseHandler [javadoc |
source]
java.lang.Object
java.awt.event.MouseAdapter
javax.swing.plaf.basic.BasicTreeUI$MouseHandler
All Implemented Interfaces:
MouseMotionListener, MouseListener, MouseWheelListener
TreeMouseListener is responsible for updating the selection
based on mouse events.
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.swing.plaf.basic.BasicTreeUI$MouseHandler Detail: |
public void mouseDragged(MouseEvent e) {
getHandler().mouseDragged(e);
}
|
public void mouseMoved(MouseEvent e) {
getHandler().mouseMoved(e);
}
Invoked when the mouse button has been moved on a component
(with no buttons no down). |
public void mousePressed(MouseEvent e) {
getHandler().mousePressed(e);
}
Invoked when a mouse button has been pressed on a component. |
public void mouseReleased(MouseEvent e) {
getHandler().mouseReleased(e);
}
|