com.pietschy.command
Interface HoverListener

All Superinterfaces:
java.util.EventListener

public interface HoverListener
extends java.util.EventListener

This interface provides notification when the mouse has hovered over a Command generate button. Listeners need to register interest using HoverManager.addHoverListener(com.pietschy.command.HoverListener).

See Also:
HoverManager.addHoverListener(com.pietschy.command.HoverListener)

Method Summary
 void hoverEnded(HoverEvent e)
          Notification that the mouse has moved off a command component.
 void hoverStarted(HoverEvent e)
          Notification that the mouse has moved over a command component.
 

Method Detail

hoverStarted

void hoverStarted(HoverEvent e)
Notification that the mouse has moved over a command component.

Parameters:
e - a HoverEvent specifying the details.

hoverEnded

void hoverEnded(HoverEvent e)
Notification that the mouse has moved off a command component.

Parameters:
e - a HoverEvent specifying the details.


Copyright © 2006 - 2007 Andrew Pietsch