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; //from w w w .j a va 2 s .c om import java.util.ArrayList; import java.util.Collection; public class TodoList { protected ArrayList<Item> todoList; public TodoList(ArrayList<Item> items) { todoList = items; } public Collection<Item> getTodoList() { return todoList; } public void addItem(Item newItem) { todoList.add(newItem); } public void removeItem(Item item) { todoList.remove(item); } }