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

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

Write this ARM assemble language program, Programming Assignment CS252 Spri...

Programming Assignment CS252 Spring 2014 Write an ARM assembly language subroutine that performs according to the following specification (Caesar cypher). Given a mixed case al

Define procedure of Building Assembler programs, In order to be able to mak...

In order to be able to make a program, quite a lot of tools are needed: Earliest an editor is used to create the source program. Next a compiler, which is nothing more than a progr

Describe symbols chart in assembly process ?, SYMBOLS CHART Every one of t...

SYMBOLS CHART Every one of the parts on code line in assembler is known as token, for instance on the code line: MOV AX, Var We comprise three tokens, the MOV instruction, the AX o

C, board coloring

board coloring

Quantitative Methods in Business Decision Making, 4. Union City Al has dec...

4. Union City Al has decided to upgrade their tornado warning system. The city leaders have identified six potential locations for erecting a warning siren tower. They want to e

Scheme, There is a path between two vertices if there is a series of edges ...

There is a path between two vertices if there is a series of edges that you can use to travel between them. For example, between vertices 1 and 3 above, there is a path made up of

Distinguish between the following javascript built-in method, QUESTION ...

QUESTION (a) Draw an annotated diagram explaining how data is transmitted to web servers during a standard form submit event. (b) What in your opinion makes a bad web site?

Encoder, What is an encoder? Draw the logic circuit of Decimal to BCD encod...

What is an encoder? Draw the logic circuit of Decimal to BCD encoder and explain its working.?

Trap doors and Logic Bombs, Trap doors:  This is a way of bypassing normal...

Trap doors:  This is a way of bypassing normal authentication procedure (windows/ operating system user name  and password) to access a system. Once a system is compromised (impac

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