public static class

ListenerWrapper.WrappedScrollListener

extends ListenerWrapper<T>
implements ScrollHandler
java.lang.Object
   ↳ com.google.gwt.user.client.BaseListenerWrapper<T>
     ↳ com.google.gwt.user.client.ui.ListenerWrapper<T>
       ↳ com.google.gwt.user.client.ui.ListenerWrapper.WrappedScrollListener

Class Overview

Wrapper for a ScrollListener.

Summary

Public Methods
static ListenerWrapper.WrappedScrollListener add(HasScrollHandlers source, ScrollListener listener)
This method is deprecated. will be removed in GWT 2.0 along with the listener classes
void onScroll(ScrollEvent event)
Called when ScrollEvent is fired.
static void remove(Widget eventSource, ScrollListener listener)
This method is deprecated. will be removed in GWT 2.0 along with the listener classes
[Expand]
Inherited Methods
From class com.google.gwt.user.client.ui.ListenerWrapper
From class com.google.gwt.user.client.BaseListenerWrapper
From class java.lang.Object
From interface com.google.gwt.event.dom.client.ScrollHandler

Public Methods

public static ListenerWrapper.WrappedScrollListener add (HasScrollHandlers source, ScrollListener listener)

This method is deprecated.
will be removed in GWT 2.0 along with the listener classes

Adds the wrapped listener.

Parameters
source the event source
listener the listener
Returns
  • the wrapped listener

public void onScroll (ScrollEvent event)

Called when ScrollEvent is fired.

Parameters
event the ScrollEvent that was fired

public static void remove (Widget eventSource, ScrollListener listener)

This method is deprecated.
will be removed in GWT 2.0 along with the listener classes

Removes the wrapped listener.

Parameters
eventSource the event source from which to remove the wrapped listener
listener the listener to remove