Package com.google.gwt.user.client.ui
Interface SourcesMouseWheelEvents
-
- All Known Implementing Classes:
FocusPanel
@Deprecated public interface SourcesMouseWheelEvents
Deprecated.UseHasMouseWheelHandlers
insteadA widget that implements this interface sources the events defined by theMouseWheelListener
interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
addMouseWheelListener(MouseWheelListener listener)
Deprecated.void
removeMouseWheelListener(MouseWheelListener listener)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned byHasMouseWheelHandlers.addMouseWheelHandler(com.google.gwt.event.dom.client.MouseWheelHandler)
instead
-
-
-
Method Detail
-
addMouseWheelListener
@Deprecated void addMouseWheelListener(MouseWheelListener listener)
Deprecated.Adds a listener interface to receive mouse events.- Parameters:
listener
- the listener interface to add
-
removeMouseWheelListener
@Deprecated void removeMouseWheelListener(MouseWheelListener listener)
Deprecated.Use theHandlerRegistration.removeHandler()
method on the object returned byHasMouseWheelHandlers.addMouseWheelHandler(com.google.gwt.event.dom.client.MouseWheelHandler)
insteadRemoves a previously added listener interface.- Parameters:
listener
- the listener interface to remove
-
-