Back to project page ReadabilitySDK.
The source code is released under:
MIT License
If you think the Android project ReadabilitySDK 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 com.idemidov.readability.data; // w w w .j a v a2 s. co m public class Meta { private int numberOfPages; private int page; private int itemCountTotal; private int itemCount; public int getNumberOfPages() { return numberOfPages; } public void setNumberOfPages(int numberOfPages) { this.numberOfPages = numberOfPages; } public int getPage() { return page; } public void setPage(int page) { this.page = page; } public int getItemCountTotal() { return itemCountTotal; } public void setItemCountTotal(int itemCountTotal) { this.itemCountTotal = itemCountTotal; } public int getItemCount() { return itemCount; } public void setItemCount(int itemCount) { this.itemCount = itemCount; } }