Back to project page dw2020.
The source code is released under:
Apache License
If you think the Android project dw2020 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.darkwire.example.widgets.adapter; /*ww w . j a va 2s . c o m*/ /** * Created by fsiu on 4/19/14. */ public interface NumericPagination { public long getMaxPages(); public void setMaxPages(final long maxPages); public long getCurrentPage(); public void setCurrentPage(final long currentPage); public int getResultsPerPage(); public void setResultsPerPage(final int resultsPerPage); public void incrementPage(); public void decrementPage(); public boolean hasMorePages(); }