FileDocCategorySizeDatePackage
MouseWheelListener.javaAPI DocJava SE 5 API1368Fri Aug 26 14:56:50 BST 2005java.awt.event

MouseWheelListener

public interface MouseWheelListener implements EventListener
The listener interface for receiving mouse wheel events on a component. (For clicks and other mouse events, use the MouseListener. For mouse movement and drags, use the MouseMotionListener.)

The class that is interested in processing a mouse wheel event implements this interface (and all the methods it contains).

The listener object created from that class is then registered with a component using the component's addMouseWheelListener method. A mouse wheel event is generated when the mouse wheel is rotated. When a mouse wheel event occurs, that object's mouseWheelMoved method is invoked.

For information on how mouse wheel events are dispatched, see the class description for {@link MouseWheelEvent}.

author
Brent Christian
version
1.5 12/19/03
see
MouseWheelEvent
since
1.4

Fields Summary
Constructors Summary
Methods Summary
public voidmouseWheelMoved(java.awt.event.MouseWheelEvent e)
Invoked when the mouse wheel is rotated.

see
MouseWheelEvent