Back to project page Berengar.
The source code is released under:
Apache License
If you think the Android project Berengar 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 it.bradipao.berengar; /*from www.j a v a2s .co m*/ public class CategoryItem { public long l_id; public String s_name,s_icon; public int i_icon; public CategoryItem(String s_name,String s_icon) { super(); this.l_id = 0; this.s_name = s_name; this.s_icon = s_icon; this.i_icon = 0; } public CategoryItem(String s_name,String s_icon,int i_icon) { super(); this.l_id = 0; this.s_name = s_name; this.s_icon = s_icon; this.i_icon = i_icon; } public CategoryItem(long l_id,String s_name,String s_icon) { super(); this.l_id = l_id; this.s_name = s_name; this.s_icon = s_icon; this.i_icon = 0; } }