Back to project page Todo.
The source code is released under:
GNU General Public License
If you think the Android project Todo 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 voodsingular.todo; /*from w ww . jav a2 s. co m*/ /** The object model for the data we are sending through endpoints */ public class TaskBean { Long id; public Long getId() { return id; } public void setId(Long id) { this.id = id; } private String myData; public String getData() { return myData; } public void setData(String data) { myData = data; } }