com.google.gwt.widgetideas.table.client
Interface RowPagingListener


public interface RowPagingListener

Event listener interface for SourceRowPagingEvents.


Method Summary
 void onNumPagesChanges(int numPages)
          Fired when the number of pages changes.
 void onPageChanged(int page)
          Fired when the current page changes, but before it is loaded.
 void onPageLoaded(int page)
          Fired when the current page has completely finished loading.
 void onPagingFailure(java.lang.Throwable caught)
          Fired when a failure occurs while loading the page.
 

Method Detail

onNumPagesChanges

void onNumPagesChanges(int numPages)
Fired when the number of pages changes.

Parameters:
numPages - the new number of pages

onPageChanged

void onPageChanged(int page)
Fired when the current page changes, but before it is loaded.

Parameters:
page - the new page

onPageLoaded

void onPageLoaded(int page)
Fired when the current page has completely finished loading.

Parameters:
page - the new page

onPagingFailure

void onPagingFailure(java.lang.Throwable caught)
Fired when a failure occurs while loading the page.

Parameters:
caught - the exception that caused the failure