ToDoMenu, Basic Computer Science

Assignment Help:
In this assignment, you should create a class called ToDoMenu which has a main method that contains the code that implements a command-line menu for managing a collection of ToDoItem objects. You will also create a class called ToDoList which contains a collection of ToDoItem objects and some methods for managing the data in that collection. You will reuse both the ToDoItem class and the ToDoUtil class that you wrote for p3.

*

The ToDoItem class needs to be modified to implement the Comparable interface.
*

A ToDoList is a collection of ToDoItem objects
o

The ToDoList class needs to contain an ArrayList of ToDoItem objects. Feel free to add any other variables that you think would be useful.
o

ToDoList needs methods to provide the following functionality:
+

Add a ToDoItem to the ToDoList.
+

Return the number of ToDoItem objects in the ToDoList.
+

Return a particular ToDoItem by index. This will allow you to write loops that process each ToDoItem in the ToDoList.
+

Return a reference to an array containing all the ToDoItem objects in the list. This array should be exactly the right size for the number of ToDoItems in your ToDoList.
+

Return an array containing all the ToDoItems in a particular category.
+

Add any other methods you find you need.
*

The ToDoUtil class provides the following static methods for input and output of ToDoItems and ToDoLists.

Method signature Functionality
Methods written for p3
ToDoItem inputToDoItem( Scanner in) Read a ToDoItem from the keyboard
void printToDoItem( PrintStream out, ToDoItem task) Output a ToDoItem to the PrintStream out in the following format

submit p3
school
3/8/12
7

Methods added for this program
ToDoItem readToDoItem( Scanner in) Read data for a ToDoItem from a file. This method should read the data that is output by the printToDoItem method. This method is very similar to the inputToDoItem method above but doesn''t need the user prompts. You can assume that the data comes in the order given above but you should be able to handle input with no field data.

design for p3



void printToDoList( PrintStream out, ToDoList theList) Output all the ToDoItems in a ToDoList to the PrintStream out. This method should use the printToDoItem method to output each ToDoItem.
void readToDoList( Scanner in, ToDoList theList) Read all ToDoItems in the file connected to the Scanner in (using readToDoItem) and add them to the given ToDoList. This method should be able to read a file that was output by the printToDoList method.

#

You need to write the main class, ToDoMenu, which consists of a main method which is basically a command-line menu that allows you to manage the items in your ToDoList.

*

The main method should create a ToDoList.
*

Your command-line menu should support the following options

Menu Choice Functionality
n create a new (empty) ToDoList
r Request the name of a file from the keyboard and read ToDoItems from that file (using readToDoList method) and add them to the current ToDoList.
i Read a single ToDoItem from the keyboard (using inputToDoItem) and add it to the ToDoList
d Display all ToDoItems to the console (using printToDoList)
w Write the ToDoItems to a file (using printToDoList) whose name is entered from the keyboard
f Display a submenu that allows the user to find and display all the ToDoItems that meet a particular criterion. Your program is required to support find by category and the option to find all ToDoItems with a particular keyword in the description. Use the menu choices shown in the table below.
s Display a submenu that allows the user to sort the ToDoList in order by a particular field. Sorting by due date is required. Use the same menu choices (shown in the table below) as in the find menu.
q Exit the program
* The find and sort menus should support the same selection characters. The c and k options in the find menu and the d option in the sort menu are required.

Menu Choice Find functionality Sort Functionality
k Find ToDoItems with a given keyword in the description. Sort ToDoItems by description.
c Find ToDoItems that have a particular category. The category should be read from the keyboard. Sort ToDoItems by category.
d Find ToDoItems with a given due date. Sort ToDoItems by due date.
p Find ToDoItems with a given priority. Sort ToDoItems by priority.
x Exit - return to the main menu.

Unimplemented options should do nothing except print a message.
*

This program should handle IOExceptions and all Exceptions due to bad input data. Handle any other exceptions that you find.
*

This program should either prevent or handle any Exceptions caused by missing data (e.g. a null dueDate).
*

Provide a file called todo-data.txt that contains data for ToDoItems (in the format that readToDoItem and printToDoItem read and write) to thoroughly test your methods and menu.
*

Extra Credit (Up to 15 points): Implement one or more of the find and sort options that aren''t required.
*

Extra Credit (+3 points): Add an optional command line argument which is the name of a file to read the initial ToDoList from. If the command line argument is not present, the initial ToDoList should be empty.
*

Extra Credit (+5 points): Create a runnable jar file for your project. This allows a user to simply double-click on the jar file to run the project. The name must be todo-menu.jar.

Related Discussions:- ToDoMenu

Explain the characteristics of vector processing, Question 1 Draw the bloc...

Question 1 Draw the block diagram of von Neumann Architecture and explain about its parts in brief Question 2 Draw the block diagram of Intel 8085 CPU organization and explai

C, board coloring

board coloring

Distinguish between s-http and ssl, QUESTION (a) Distinguish between S...

QUESTION (a) Distinguish between S-HTTP and SSL (b) What are the three basic security provided by SSL? (c) Discuss the limitations of SSL (d) State the port number us

Which port does FTP uses, Why is it called out of band protocol? A1) FTP us...

Why is it called out of band protocol? A1) FTP uses port 20 and port 21; port 20 is used for data connection, whereas port 21 is used for control connection. FTP is known as out-of

Copmurer, Classify computer systems according to capacity. How they are dif...

Classify computer systems according to capacity. How they are different from computers according to the classification of technology. Provide comparative study also.

Central processing unit, The Central Processing Unit : Central Processing U...

The Central Processing Unit : Central Processing Unit (CPU) is the brain of the computer. The intricate electronic circuitry of the CPU performs the computer's tasks of handling d

What is i-node number, Question 1 Bring out the advantages of Linux Ope...

Question 1 Bring out the advantages of Linux Operating systems Question 2 Match the Symbols with their respective file types              Symbol               File N

Define Interprocess Communication and its race condition?, In view of the f...

In view of the fact that processes frequently need to communicate with other processes therefore, there is require for a well-structured interaction, devoid of using interrupts, a

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd