Back to project page GoCats.
The source code is released under:
Apache License
If you think the Android project GoCats 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 org.collegelabs.gocats.app; // w ww .jav a 2 s. com import android.graphics.Bitmap; /** */ public class ImageInfo { public Bitmap image; public String id; public ImageInfo(String id, Bitmap image){ this.id = id; this.image = image; } }