Back to project page AndroidToDoList.
The source code is released under:
GNU General Public License
If you think the Android project AndroidToDoList 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 com.example.todolist; /* w ww . ja va 2 s .c om*/ import java.io.Serializable; public class todoItem implements Serializable { /** * Serialized */ private static final long serialVersionUID = 3004098601522293129L; private String name; private boolean status = false; public todoItem(String name) { this.name = name; } public boolean isDone() { return status; } public void setStatus(boolean newStatus) { status = newStatus; } public String getName() { return name; } public String toString() { return getName(); } }