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; /*w ww . j a v a 2 s. com*/ import android.graphics.Bitmap; /** * Created with IntelliJ IDEA. * User: nikolai * Date: 9/15/13 * Time: 2:00 PM * To change this template use File | Settings | File Templates. */ public class ItemCategory { private Bitmap icon; private String title; private int distance; public ItemCategory(Bitmap icon, String title, int distance) { this.icon = icon; this.title = title; this.distance = distance; } public Bitmap getIcon() { return icon; } public String getTitle() { return title; } public int getDistance() { return distance; } }