Back to project page FlickrBrowser.
The source code is released under:
MIT License
If you think the Android project FlickrBrowser 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.flickrbrowser.util; /*from w ww . j a v a 2 s . com*/ import com.flickrbrowser.parcelable.PhotoResult; /** * Created by bif on 14/04/14. */ public class FlickrPhotoArray { private int page; private int pages; private int perpage; private int total; private PhotoResult[] photo; public int getPage() { return page; } public int getPages() { return pages; } public int getPerpage() { return perpage; } public int getTotal() { return total; } public PhotoResult[] getPhoto() { return photo; } }