com.guiseframework.event
Interface MouseListener

All Superinterfaces:
java.util.EventListener, GuiseEventListener
All Known Subinterfaces:
Component.FlyoverStrategy<S>
All Known Implementing Classes:
AbstractComponent.AbstractFlyoverFrameStrategy, AbstractComponent.AbstractFlyoverStrategy, AbstractComponent.DefaultFlyoverStrategy, MouseAdapter

public interface MouseListener
extends GuiseEventListener

An object that listens for mouse events.

Author:
Garret Wilson

Method Summary
 void mouseClicked(MouseClickEvent mouseClickEvent)
          Called when the mouse clicks the target.
 void mouseEntered(MouseEnterEvent mouseEnterEvent)
          Called when the mouse enters the target.
 void mouseExited(MouseExitEvent mouseExitEvent)
          Called when the mouse exits the target.
 

Method Detail

mouseClicked

void mouseClicked(MouseClickEvent mouseClickEvent)
Called when the mouse clicks the target.

Parameters:
mouseEvent - The event providing mouse information

mouseEntered

void mouseEntered(MouseEnterEvent mouseEnterEvent)
Called when the mouse enters the target.

Parameters:
mouseEvent - The event providing mouse information

mouseExited

void mouseExited(MouseExitEvent mouseExitEvent)
Called when the mouse exits the target.

Parameters:
mouseEvent - The event providing mouse information


Copyright © 2005-2010 GlobalMentor, Inc. All Rights Reserved.