Question
Write an application in java that models courses, students, and faculty members in a university. General Directions Use proper Java naming conventions. each class you
Write an application in java that models courses, students, and faculty members in a university.
General Directions
Use proper Java naming conventions.
each class you create will have private instance variables and any necessary getters and setters.
Be sure to implement toString() for each class.
You may use either Scanners and System.out.println or JOptionPane for the I/O in this lab. Either way, think carefully about how to organize the input/output for this lab *before* you begin coding.
Address Class:
An address has a street number, street name, city, state or province, and country.
Person Class:
A Person has a name and an Address (represented by an object of class Address, not a String). Note that the subclasses of Person inherit the fields and methods of Person. You may need to override some of the methods in the subclasses.
Student Class:
Student is a subclass of Person. In addition to the data inherited from Person, a student has CIN and a course schedule represented by an ArrayList of Courses (objects of class Course). You must provide ways for a Student to add and drop an existing Course.
FacultyMember Class:
FacultyMember is also subclass of Person. A FacultyMember has an employee id number and a teaching schedule, which is an ArrayList of Courses. Provide a way to assign a FacultyMember to teach an existing Course and for a Faculty member to find a class in the list and drop it.
Course Class:
A course has a course identifier (eg, EE-132) and a number of units (int).
University Class:
Write a University class that maintains lists of Students, Courses, and FacultyMembers and has an instance method containing a menu that provides ways to list them and to create them and add them to the list. Provide ways to delete Students and FacultyMembers and for Students and FacultyMembers to add and delete Courses from their course schedules. However, you do not need to provide a way to delete a Course from the list of Courses. Do not create a new Course when a Student adds or when a faculty member is assigned to teach; let the user choose a Course from the list.
Driver Class:
Write a simple Driver class that instantiates a University and calls the correct method to get the menu.
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