Back to project page photos.
The source code is released under:
MIT License
If you think the Android project photos 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.ericfarraro.sdk.models; // w w w. j av a 2s. co m import android.os.Bundle; /** * Created by Eric on 10/7/2014. */ public class Photo { protected String mId; protected String mUrl; protected String mTitle; public String getUrl() { return mUrl; } public void setUrl(String url) { mUrl = url; } public String getId() { return mId; } public void setId(String id) { mId = id; } public String getTitle() { return mTitle; } public void setTitle(String title) { mTitle = title; } public Bundle asBundle() { Bundle bundle = new Bundle(); bundle.putString("url", mUrl); bundle.putString("id", mId); bundle.putString("title", mTitle); return bundle; } }