com.jmex.bui.event
Interface MouseListener

All Superinterfaces:
ComponentListener
All Known Implementing Classes:
MouseAdapter

public interface MouseListener
extends ComponentListener

Dispatches mouse events to listeners on a component.


Method Summary
 void mouseEntered(MouseEvent event)
          Dispatched when the mouse enters the bounds of the target component.
 void mouseExited(MouseEvent event)
          Dispatched when the mouse exits the bounds of the target component.
 void mousePressed(MouseEvent event)
          Dispatched when a button is pressed within the bounds of the target component.
 void mouseReleased(MouseEvent event)
          Dispatched when a button is released after having been pressed within the bounds of the target component.
 

Method Detail

mousePressed

void mousePressed(MouseEvent event)
Dispatched when a button is pressed within the bounds of the target component.


mouseReleased

void mouseReleased(MouseEvent event)
Dispatched when a button is released after having been pressed within the bounds of the target component.


mouseEntered

void mouseEntered(MouseEvent event)
Dispatched when the mouse enters the bounds of the target component.


mouseExited

void mouseExited(MouseEvent event)
Dispatched when the mouse exits the bounds of the target component.



Copyright © 2008 Michael Bayne. All Rights Reserved.