Back to project page TODOs.
The source code is released under:
GNU General Public License
If you think the Android project TODOs 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.shevaroller.oleksiy_todos; // w ww. ja va2s.c o m public class Item { protected String itemText; protected boolean done; public Item(String itemText) { this.itemText = itemText; } public String getText() { return itemText; } public String toString() { return getText(); } public boolean isDone() { return done; } }