Home | History | Annotate | Download | only in app

Lines Matching defs:PhotoItem

21 public class PhotoItem implements Parcelable {
26 public PhotoItem(String title, int imageResourceId) {
30 public PhotoItem(String title, String content, int imageResourceId) {
64 public static final Parcelable.Creator<PhotoItem> CREATOR =
65 new Parcelable.Creator<PhotoItem>() {
67 public PhotoItem createFromParcel(Parcel in) {
68 return new PhotoItem(in);
72 public PhotoItem[] newArray(int size) {
73 return new PhotoItem[size];
77 private PhotoItem(Parcel in) {