java.lang.Object
javax.swing.plaf.basic.BasicTreeUI.MouseInputHandler
- All Implemented Interfaces:
MouseListener
,MouseMotionListener
,EventListener
,MouseInputListener
- Enclosing class:
- BasicTreeUI
MouseInputHandler handles passing all mouse events,
including mouse motion events, until the mouse is released to
the destination it is constructed with. It is assumed all the
events are currently target at source.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionMouseInputHandler(Component source, Component destination, MouseEvent event)
Constructs a new instance ofMouseInputHandler
. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
Removes an event from the source.Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods declared in interface java.awt.event.MouseListener
mouseClicked, mouseEntered, mouseExited, mousePressed, mouseReleased
Methods declared in interface java.awt.event.MouseMotionListener
mouseDragged, mouseMoved
-
Field Details
-
source
Source that events are coming from. -
destination
Destination that receives all events.
-
-
Constructor Details
-
MouseInputHandler
Constructs a new instance ofMouseInputHandler
.- Parameters:
source
- a source componentdestination
- a destination componentevent
- a mouse event
-
-
Method Details
-
removeFromSource
protected void removeFromSource()Removes an event from the source.
-