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; // ww w. j ava2 s . c o m public class EventItem { public long l_id,l_idcat,l_when; public String s_name; public EventItem(long l_idcat,long l_when,String s_name) { super(); this.l_id = 0; this.l_idcat = l_idcat; this.l_when = l_when; this.s_name = s_name; } public EventItem(long l_id,long l_idcat,long l_when,String s_name) { super(); this.l_id = l_id; this.l_idcat = l_idcat; this.l_when = l_when; this.s_name = s_name; } }