Android Open Source - NotAnotherTodoApp Todo List Controller






From Project

Back to project page NotAnotherTodoApp.

License

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.

Java Source Code

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);
  }
  
}




Java Source Code List

ca.ualberta.cs.notanothertodoapp.AllTodosActivity.java
ca.ualberta.cs.notanothertodoapp.ArchiveActivity.java
ca.ualberta.cs.notanothertodoapp.Listener.java
ca.ualberta.cs.notanothertodoapp.MainActivity.java
ca.ualberta.cs.notanothertodoapp.TodoListAdapter.java
ca.ualberta.cs.notanothertodoapp.TodoListController.java
ca.ualberta.cs.notanothertodoapp.TodoList.java
ca.ualberta.cs.notanothertodoapp.Todo.java