quicktime.app.event
Interface MouseEnterExitListener

All Superinterfaces:
java.util.EventListener, MouseMoveListener, QTMouseListener
All Known Implementing Classes:
MouseEnterExitAdapter, QTEventCaster

public interface MouseEnterExitListener
extends MouseMoveListener

An interface that is used to express an interest in recieving mouse events where the mouse movement (or drag) enters or exits a given space.


Method Summary
 void mouseEntered(QTMouseEvent e)
          Invoked when the mouse enters a space.
 void mouseExited(QTMouseEvent e)
          Invoked when the mouse exits a space.
 
Methods inherited from interface quicktime.app.event.MouseMoveListener
mouseDragged, mouseMoved
 
Methods inherited from interface quicktime.app.event.QTMouseListener
matchModifierFilter
 

Method Detail

mouseEntered

public void mouseEntered(QTMouseEvent e)
Invoked when the mouse enters a space.

mouseExited

public void mouseExited(QTMouseEvent e)
Invoked when the mouse exits a space.