Back to project page PhotoGallery.
The source code is released under:
MIT License
If you think the Android project PhotoGallery 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.ambergleam.photogallery; /*from w w w . j av a 2 s .c om*/ public class GalleryItem { private String mCaption; private String mId; private String mUrl; public String toString() { return mCaption; } public String getCaption() { return mCaption; } public void setCaption(String mCaption) { this.mCaption = mCaption; } public String getId() { return mId; } public void setId(String mId) { this.mId = mId; } public String getUrl() { return mUrl; } public void setUrl(String mUrl) { this.mUrl = mUrl; } }