Back to project page assignment1_todolist.
The source code is released under:
GNU General Public License
If you think the Android project assignment1_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 com.example.mswillia_notes002; //from www. j a v a 2 s .co m import java.util.ArrayList; public interface InterfaceFileManager { /* InterfaceFileManager provides method signatures for TodoListFileManager and facilitates MainActivity access to file read and write */ public void saveTodoList(CombinedList combined); public CombinedList loadTodoList(); }