Skip to content

hannavigil/cs56-utilities-todo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cs56-utilties-todo

project history

 YES | mastergberry | sososohan,khaliddhanani | (bkiefer13) Multi-level todo list application

 W14 | jstaahl 5pm | sososohan,khaliddhanani | (bkiefer13) Multi-level todo list application

Multi-level todo list application.

When complete, this application will allow user to create a todo list of tasks and subtasks that can be edited and sorted using an easy to use GUI.

run with

ant run

TODO FIX javadoc: http://www.cs.ucsb.edu/~khalid/cs56/cs56-utilities-todo/javadoc

Programmer Notes

The main class of this project is the Task class. It has the following private instance variables:

private String taskName;
private Calendar dueDate;
private boolean completed;
private ArrayList<Task> subtasks = new ArrayList<Task>();
private Task parentTask;

The Task class has underlying instance variables and methods that support a multi-level task system (tasks can have parent tasks and also subtasks), but this system has not been implemented in the application or any of its functions.

About

W15-YES | PazZaitGivon | hannavigil cpounds| Multi-level todo list application

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%