Back to project page ToDoList.
The source code is released under:
GNU General Public License
If you think the Android project ToDoList 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 ca.ualberta.cs.todolist; /*from w ww. j a v a 2 s. co m*/ import java.io.Serializable; public class Item implements Serializable{ /** * Item serialization ID */ private static final long serialVersionUID = 3139496345116943322L; protected String itemName; public boolean box; public int image = R.drawable.unchecked;; public String itemStatus = "TODO"; public Item(String itemName){ this.itemName = itemName; } public String getName(){ return this.itemName; } public String toString(){ return getName(); } public String getStatus() { return this.itemStatus; } public int getImage() { return this.image; } }