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 w w w . j a v a 2 s. c o m*/ import java.io.Serializable; public class CombinedList implements Serializable { /* CombinedList class combines todo list and archive list into a single object */ private static final long serialVersionUID = 6332734647886032604L; private TodoList todolist; private TodoList todoarchive; public CombinedList(){ this.todolist = new TodoList(); this.todoarchive = new TodoList(); } public TodoList getTodolist() { return todolist; } public void setTodolist(TodoList todolist) { this.todolist = todolist; } public TodoList getTodoarchive() { return todoarchive; } public void setTodoarchive(TodoList todoarchive) { this.todoarchive = todoarchive; } }