Back to project page android-data-persistence.
The source code is released under:
MIT License
If you think the Android project android-data-persistence 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.teamtreehouse.mememaker.models; /*from w ww . j a v a2 s . c o m*/ /** * Created by MightyMac on 7/5/14. */ import android.graphics.Bitmap; public class ImageGridItem { private Bitmap image; private String filename; private String fullPath; public ImageGridItem(Bitmap image, String filename, String fullpath) { super(); this.image = image; this.filename = filename; this.fullPath = fullpath; } public Bitmap getImage() { return image; } public void setImage(Bitmap image) { this.image = image; } public String getFilename() { return filename; } public void setFilename(String filename) { this.filename = filename; } public String getFullPath() { return this.fullPath; } public void setFullPath(String fullPath) { this.fullPath = fullPath; } }