package uk.co.blatech.blaupload.data; import android.graphics.Bitmap; /** * Simple object to store images with extra details * ID is used in the UI for ordering things * */ public class ImageItem { private int id; private Bitmap image; private String title; public ImageItem(int id, Bitmap image, String title) { super(); this.id = id; this.image = image; this.title = title; } public Bitmap getImage() { return image; } public void setImage(Bitmap image) { this.image = image; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public int getId() { return id; } public void setId(int id) { this.id = id; } }