Back to project page WAIDRecognizer.
The source code is released under:
GNU General Public License
If you think the Android project WAIDRecognizer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * //ww w. j a v a2 s.c o m */ package it.unibo.cs.jonus.waidrec; import android.graphics.Bitmap; /** * @author jei * */ public class VehicleItem { private String category; private Bitmap icon; /** * */ public VehicleItem() { // TODO Auto-generated constructor stub } /** * @return the category */ public String getCategory() { return category; } /** * @param category the category to set */ public void setCategory(String category) { this.category = category; } /** * @return the icon */ public Bitmap getIcon() { return icon; } /** * @param icon the icon to set */ public void setIcon(Bitmap icon) { this.icon = icon; } }