Skip to content

Instantly share code, notes, and snippets.

@kevzlou7979
Created November 19, 2016 02:16
Show Gist options
  • Save kevzlou7979/8cfb5c137e2c08731f29614582d33036 to your computer and use it in GitHub Desktop.
Save kevzlou7979/8cfb5c137e2c08731f29614582d33036 to your computer and use it in GitHub Desktop.
package gwt.material.design.client.ui.pager;
public interface HasPager {
void next();
void previous();
void lastPage();
void firstPage();
void gotoPage(int page);
void setLimit(int limit);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment