Question
Objectives: CS 3340 Object Oriented Programming To practice more with collections and exceptions. Assignment: Your job is to extend the Registration System we built in
Objectives:
CS 3340 Object Oriented Programming
To practice more with collections and exceptions.
Assignment:
Your job is to extend the Registration System we built in class in 3 ways:
Support a new type of class called a OpenUniversity student. These students do not have an ID, but they do have a phone number. Two students are the same if they have the same name and phone number.
Allow each course to have a set of Open University students, in addition to regular students. There should be 2 capacities for each course, the number of regular students and the number of Open University students.
The number of Open Unversity students should not exceed the number of regular students at any time or else an exception should be thrown.
It should be possible to delete students from a course using a new "ds" command. When that command is entered, the system should ask the user for the ID of the student and then search both the full time students and Open University student lists for that student in the course. If found, that student should be removed from that list.
Student Java:
package mar06registration;
import java.util.Objects;
public class Student {
private String name;
private String id;
public Student(String name, String id) {
this.name = name;
this.id = id;
}
@Override
public int hashCode() {
int hash = 7;
hash = 37 * hash + Objects.hashCode(this.id);
return hash;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final Student other = (Student) obj;
if (!Objects.equals(this.id, other.id)) {
return false;
}
return true;
}
private String getId() {
return this.id;
}
}
Course.Java
package mar06registration;
import java.util.HashSet;
import java.util.Set;
public class Course {
private String name;
private int capacity;
private Set
public Course(String name, int capacity) {
this(name);
this.capacity = capacity;
}
public Course(String courseName) {
students = new HashSet
this.name = courseName;
}
public String getName() {
return name;
}
void addStudent(Student student) {
if (students.contains(student)) {
throw new RuntimeException("Student already in course!");
}
else if (students.size() == this.capacity) {
throw new RuntimeException("Course already full");
}
students.add(student);
}
}
RegistrationSystem.java
package mar06registration;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class RegistrationSystem {
private Map
public RegistrationSystem() {
school = new HashMap
}
private static void out(String s) {
System.out.print(s);
}
private static void outln(String s) {
System.out.println(s);
}
public static void main(String[] args) {
RegistrationSystem rs = new RegistrationSystem();
Scanner s = new Scanner(System.in);
boolean done = false;
do {
out("What next? ");
try {
String cmd = s.next();
s.nextLine();
switch (cmd) {
case "q": {
done = true;
outln("Goodbye!");
break;
}
case "ac": {
handleAddCourse(s, rs);
break;
}
case "as": {
handleAddStudent(s, rs);
break;
}
default:
outln("I do not understand you!");
break;
}
} catch (Exception e) {
outln("ERROR: "+e.getMessage());
}
} while (!done);
}
private static void handleAddStudent(Scanner s, RegistrationSystem rs) {
out("Student name: ");
String name = s.next();
s.nextLine();
out("Student ID: ");
String id = s.next();
s.nextLine();
out("Course: ");
String courseName = s.next();
s.nextLine();
Student student = new Student(name, id);
Course course = new Course(courseName);
rs.addStudentToCourse(student, course);
outln("Student added!");
}
private static void handleAddCourse(Scanner s, RegistrationSystem rs) {
out("Course name: ");
String name = s.next();
s.nextLine();
out("Course capacity: ");
int capacity = s.nextInt();
s.nextLine();
Course c = new Course(name, capacity);
rs.addCourse(c);
outln("Course added");
}
private void addCourse(Course c) {
if (courseExist(c)) {
throw new RuntimeException("Course already exists");
}
addCourseToSchool(c);
}
private boolean courseExist(Course c) {
return school.get(c.getName()) != null;
}
private void addCourseToSchool(Course c) {
school.put(c.getName(), c);
}
private void addStudentToCourse(Student student, Course course) {
Course c = school.get(course.getName());
if (c == null) {
throw new RuntimeException("No such course!");
}
c.addStudent(student);
}
}
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