Back to project page BLEConnect.
The source code is released under:
GNU General Public License
If you think the Android project BLEConnect 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 pro.apus.bleconnect; //from www. j av a 2 s . co m public class Event { private long id; private int session; private long time; private long eventdata; public long getId() { return id; } public void setId(long id) { this.id = id; } public int getSession() { return session; } public void setSession(int session) { this.session = session; } public long getTime() { return time; } public void setTime(long time) { this.time = time; } public long getEventdata() { return eventdata; } public void setEventdata(long eventdata) { this.eventdata = eventdata; } }