Back to project page demo-flickr-feed-android.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project demo-flickr-feed-android 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 uk.org.tomek.flickrfeed.model; /* w ww.ja va2 s . co m*/ import android.os.Parcel; import android.os.Parcelable; import com.google.gson.annotations.Expose; import com.orm.SugarRecord; /** * Created by tomek on 23/11/14. */ public class Media extends SugarRecord<Media> implements Parcelable { @Expose private String m; /** * * @return * The m */ public String getM() { return m; } /** * * @param m * The m */ public void setM(String m) { this.m = m; } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(this.m); } public Media() { } private Media(Parcel in) { this.m = in.readString(); } public static final Parcelable.Creator<Media> CREATOR = new Parcelable.Creator<Media>() { public Media createFromParcel(Parcel source) { return new Media(source); } public Media[] newArray(int size) { return new Media[size]; } }; }