Back to project page NotAnotherTodoApp.
The source code is released under:
GNU General Public License
If you think the Android project NotAnotherTodoApp 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.notanothertodoapp; // www . java 2s .com //TodoList Controller public class TodoListController { private static TodoList todoList = null; static public TodoList getTodoList() { if (todoList == null) { todoList = new TodoList(); } return todoList; } public void addTodo(Todo todo) { getTodoList().addTodo(todo); } }