Question
Calendar Program Write a program to design an appointment calendar. An appointment includes a description, date, starting time, and ending time. Supply a user interface
Calendar Program
Write a program to design an appointment calendar. An appointment includes a description, date, starting time, and ending time. Supply a user interface to add appointments, remove canceled appointments, and print out a list of appointments for a particular day. Appointments should not be duplicated for a given time and date.
Include a class AppointmentMenu to print the menu to the screen and accept user input. AppointmentMenu creates an AppointmentCalendar and then calls the appropriate methods to add, cancel, show, or quit.
Include a class AppointmentCalendar that is not coupled with the Scanner or PrintStream classes. (In other words, all println statements should be in AppointmentMenu.) AppointmentCalendar will include an arrayList of Appointments, a method to add Appointments, a method to cancel Appointments, and return the Appointments for a selected day.
Include a class Appointments which holds the input of description, date, and time. It should have a method to format the output for printing by the AppointmentMenu, a method to check to see if two appointments are equal so an appointment is not duplicated for a given date and time, and a method to check for a certain date when show and cancel are called.
Be sure to include any other methods including any accessor methods that you need to complete this program using the design process described in Chapter 12.
Your main class should be called AppointmentSystem. Use the code below:
/** A system to manage appointments. */ public class AppointmentSystem { public static void main(String[] args) { AppointmentMenu menu = new AppointmentMenu(); menu.run(); } }
Here is a sample program run. (bold items are sample user inputs).
A)dd C)ancel S)how Q)uit A Appointment (Description Date From To) Dentist 01/10/2007 17:30 18:30 A)dd C)ancel S)how Q)uit A Appointment (Description Date From To) Sweets Cafe 01/10/2007 19:00 20:00 A)dd C)ancel S)how Q)uit A Appointment (Description Date From To) CS1 class 02/10/2007 08:30 10:00 A)dd C)ancel S)how Q)uit S Show appointments for which date? 01/10/2007 Appointments: Dentist 01/10/2007 17:30 18:30 Sweets Cafe 01/10/2007 19:00 20:00 A)dd C)ancel S)how Q)uit C Cancel appointments on which date? 01/10/2007 1) Dentist 01/10/2007 17:30 18:30 2) Sweets Cafe 01/10/2007 19:00 20:00 Which would you like to cancel? 1 A)dd C)ancel S)how Q)uit S Show appointments for which date? 01/10/2007 Appointments: Sweets Cafe 01/10/2007 19:00 20:00 A)dd C)ancel S)how Q)uit A Appointment (Description Date From To) Sweets Cafe 01/10/2007 19:00 20:00 This appointment already exists. A)dd C)ancel S)how Q)uit Q
How do I write this program in JAVA not C++ ? Thanks
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started