-
- All Superinterfaces:
- EventListener
- All Known Implementing Classes:
- AWTEventMulticaster, BasicComboPopup.InvocationMouseHandler, BasicComboPopup.ListMouseHandler, BasicDesktopIconUI.MouseInputHandler, BasicFileChooserUI.DoubleClickListener, BasicInternalFrameUI.BorderListener, BasicScrollBarUI.ArrowButtonListener, BasicScrollBarUI.TrackListener, BasicScrollPaneUI.MouseWheelHandler, BasicSliderUI.TrackListener, BasicSplitPaneDivider.MouseHandler, BasicTabbedPaneUI.MouseHandler, BasicTreeUI.MouseHandler, FormView.MouseEventListener, HTMLEditorKit.LinkController, MetalFileChooserUI.SingleClickListener, MouseAdapter, MouseInputAdapter, ToolTipManager
public interface MouseWheelListener extends EventListener
The listener interface for receiving mouse wheel events on a component. (For clicks and other mouse events, use theMouseListener
. For mouse movement and drags, use theMouseMotionListener
.)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'smouseWheelMoved
method is invoked.For information on how mouse wheel events are dispatched, see the class description for
MouseWheelEvent
.- Since:
- 1.4
- See Also:
MouseWheelEvent
-
-
Method Summary
Methods Modifier and Type Method and Description void
mouseWheelMoved(MouseWheelEvent e)
Invoked when the mouse wheel is rotated.
-
-
-
Method Detail
-
mouseWheelMoved
void mouseWheelMoved(MouseWheelEvent e)
Invoked when the mouse wheel is rotated.- See Also:
MouseWheelEvent
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/awt/event/mousewheellistener.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.