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

Three specific sections of the microprocessor, • CPU Structure This section...

• CPU Structure This section, with a simplified model of a central processing unit as an instance, takes you through the role of each of the major basic parts of the CPU. It also l

Search problems in artificial intelligence, Specifying Search Problems ...

Specifying Search Problems In our agent terms, a problem to be solved is a particular task where the agent starts with the environment in a given state and acts upon the enviro

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

Netlogo, Do you have expert can deal with netlogo

Do you have expert can deal with netlogo

Cmis, how much it cost for 8 week class

how much it cost for 8 week class

C++, whats the out put of int main(){ int n=310; funcone(n); functwo(&n); ...

whats the out put of int main(){ int n=310; funcone(n); functwo(&n); cout return 0; } void funcone(intn) n=240; } void func two(intn*) { n=120; }

Two-tiered architecture, Two-tiered architecture: This approach basic...

Two-tiered architecture: This approach basically introduced a database server to replace the file server. The emergence of relational database management systems and graphica

Magnetic core memory, MAGNETIC CORE MEMORY: This type of memory is used...

MAGNETIC CORE MEMORY: This type of memory is used extensively in airborne digital systems, although integrated circuits are being developed with most modern aircraft systems.

Computer graphics, A scaling constant indicates an expansion of length

A scaling constant indicates an expansion of length

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