com.guiseframework.event
Class MouseAdapter

java.lang.Object
  extended by com.guiseframework.event.MouseAdapter
All Implemented Interfaces:
GuiseEventListener, MouseListener, java.util.EventListener
Direct Known Subclasses:
AbstractComponent.AbstractFlyoverStrategy

public abstract class MouseAdapter
extends java.lang.Object
implements MouseListener

An abstract mouse listener providing default method implementations.

Author:
Garret Wilson

Constructor Summary
MouseAdapter()
           
 
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 mouseEnterEvent)
          Called when the mouse exits the target.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MouseAdapter

public MouseAdapter()
Method Detail

mouseClicked

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

Specified by:
mouseClicked in interface MouseListener
Parameters:
mouseEvent - The event providing mouse information

mouseEntered

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

Specified by:
mouseEntered in interface MouseListener
Parameters:
mouseEvent - The event providing mouse information

mouseExited

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

Specified by:
mouseExited in interface MouseListener
Parameters:
mouseEvent - The event providing mouse information


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