Package com.google.gwt.event.dom.client
Interface HasScrollHandlers
-
- All Superinterfaces:
HasHandlers
- All Known Subinterfaces:
HasScrolling,HorizontalScrollbar,VerticalScrollbar
- All Known Implementing Classes:
AbstractNativeScrollbar,CustomScrollPanel,NativeHorizontalScrollbar,NativeVerticalScrollbar,ScrollPanel
public interface HasScrollHandlers extends HasHandlers
A widget that implements this interface provides registration forScrollHandlerinstances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HandlerRegistrationaddScrollHandler(ScrollHandler handler)Adds aScrollEventhandler.-
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
-
-
-
Method Detail
-
addScrollHandler
HandlerRegistration addScrollHandler(ScrollHandler handler)
Adds aScrollEventhandler.- Parameters:
handler- the scroll handler- Returns:
HandlerRegistrationused to remove this handler
-
-