Back to project page interamap.
The source code is released under:
MIT License
If you think the Android project interamap 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.richso.interamap.item; /*from www.ja v a 2 s. co m*/ import android.graphics.Bitmap; /** * Created with IntelliJ IDEA. * User: nikolai * Date: 9/12/13 * Time: 5:36 PM * To change this template use File | Settings | File Templates. */ public class Category { private Bitmap icon; private String name; public Category(Bitmap icon, String name) { this.icon = icon; this.name = name; } public Bitmap getIcon() { return icon; } public String getName() { return name; } }