Back to project page digitalcampus.
The source code is released under:
MIT License
If you think the Android project digitalcampus 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.llenguatges.digitalcampus.objects; /*from ww w. j a va 2 s . c o m*/ import android.graphics.Bitmap; public class Item { Bitmap image; String title; /** * Constructor * @param image * @param title */ public Item(Bitmap image, String title) { super(); this.image = image; this.title = title; } /** * Get item's image * @return */ public Bitmap getImage() { return this.image; } /** * Set item's image * @param image */ public void setImage(Bitmap image) { this.image = image; } /** * Get item's title * @return title */ public String getTitle() { return this.title; } /** * Set item's title * @param title */ public void setTitle(String title) { this.title = title; } }