Creating an Exception Application in Java

Problem:

RegistrationCheck

+ registerStudent(student : Student, courseId : int) : void

Student
- id : long
- name : String
- coursesFinished : Course[]
+ Student(id : long, name : String, coursesFinished : Course[])
+ setId(id : long) : void
+ getId() : long
+ setName(name : String) : void
+ getName(): String
+ setCoursesFinished(coursesFinished : Course[]) : void
+ getCoursesFinished() : Course[]
+ toString() : String

Course
- id : int
- name : String
- preRequisite : Course
+ Course(id : int, name : String, preRequisites: Course[])
+ setId(id : int) : void
+ getId() : int
+ setName(name : String) : void
+ getName(): String
+ setPreRequisite(preRequisite: Course) : void
+ getPreRequisite() : Course
+ toString() : String



RegistrationCheckSystem
- courses : Course[]
+ registerStudent(student : Student, courseId : int) : void

RegistrationException

+ RegistrationException(message : String)

CourseNotFoundException

+ CourseNotFoundException(message : String)

In this assignment, you will be creating a Course Registration Checking System which will check if a student can register a course or not.
First, you have an interface which is the Registration interface that has one method declaration. The method is registerStudent which takes a student and a course ID as parameters.
The class Student has three private variables which are id, name, and courses finished. These variables should be initialized in the constructor and should have set and get methods.
The Course class has three private variables which are id, name, and pre-requisites. These variables should be initialized in the constructor and should have set and get methods.
The RegistrationSystem class has an array of courses and should implement the registration interface. This means that this class should implement the registerStudent method. The class has an array of available courses.
The registerStudent method should check if the student can register a specific course. The method checks if the student has finished the pre-requisites of a specific course. If so, the methods should print that the student can register this course. If the student has not completed the pre-requisites, a RegistrationException should be thrown. If the course that the student wants to register is not found, a CourseNotFoundException should be thrown.
The CourseNotFoundExceptionclass should extends the Java Exception class and call the superclass’ constructor in its constructor.
The RegistrationException class should extends the Java Exception class and call the superclass’ constructor in its constructor.
Write a tester class that creates a student and checks if a student can register a course. For simplicity, limit the number of courses to five courses.
Input should be read from the user via a scanner. First read the user id, name, and the courses he or she has finished. The number of finished courses should be two courses only.
Then read an integer which will be the course id of the course that the student wants to register. Then call resgiterStudent passing the student and the course id as a parameter.
There are a number of exceptions that should be handled in the tester class.
InpuMissmatchException might be thrown if the user enters invalid input. If so, you should tell the user that her or his input is wrong and keep requesting to enter a valid input.
The other exception is CourseNotFoundException that will be thrown if the user enters a course id that is not found. You should handle this exception by keeping on requesting from the user to enter a valid course id.
RegistrationException will be thrown if the student has not completed the prerequisites of the course. This should be handled by printing that the student cannot register this course.
Hints:
-          Use a while loop to keep requesting valid input from the user.
-          Use the following table as a course description:

id
name
preRequisite
10
CSC243
-
11
CSC245
CSC243
12
CSC310
CSC245
13
MTH201
-
14
MTH202
MTH201

Output:

Student id: 20110515
Student name: Test Student
Courses finished: 10 13
Course to register: test
Please enter a valid input!
Course to register: 12

Student has not completed the course prerequisites

Solution:

/**--------------------Course.java-----------------*/
public class Course
{
 private int id;
 private String name;
 private Course preRequisite;
 
 
 public Course(int id, String name, Course preRequisite) {
  this.id = id;
  this.name = name;
  this.preRequisite = preRequisite;
 }
 public int getId() {
  return id;
 }
 public void setId(int id) {
  this.id = id;
 }
 public String getName() {
  return name;
 }
 public void setName(String name) {
  this.name = name;
 }
 public Course getPreRequisite() {
  return preRequisite;
 }
 public void setPreRequisite(Course preRequisite) {
  this.preRequisite = preRequisite;
 }
 
 public String  toString()
 {
  
 }
 
}
/**------------CourseNotFoundException.java-----------*/
public class CourseNotFoundException extends Exception
{
 public CourseNotFoundException()
 {
  super();
 }
 public CourseNotFoundException(String message)
 {
  super(message);
 }
}
/**------------RegistrationCheck.java--------------*/
public interface RegistrationCheck
{
 void registerStudent(Student student,int courseId) 
     throws RegistrationException, CourseNotFoundException;
}
/**------------RegistrationCheckSystem.java--------*/
public class RegistrationCheckSystem implements RegistrationCheck
{
 private Course[] courses;
 public void registerStudent(Student student, int courseId)
   throws RegistrationException, CourseNotFoundException {
  courses = new Course[5];
  courses[0] = new Course(10, "CSC243", null);
  courses[1] = new Course(11, "CSC245", courses[0]);
  courses[2] = new Course(12, "CSC310", courses[1]);
  courses[3] = new Course(13, "MTH201", null);
  courses[4] = new Course(14, "MTH202", courses[3]);

  int targetCourse = -1;
  boolean preRequisiteCompleted = false;
  for (int i=0;i 14) throw new CourseNotFoundException();
   coursesFinished[0] = new Course(i,null,null);
   int j = scan.nextInt();
   if (j<10 data-blogger-escaped-j="">14) throw new CourseNotFoundException();
   coursesFinished[1] = new Course(i,null,null);
   keepLooping = false;
   }
   
   catch (InputMismatchException inputMismatchException)
   {
    scan.nextLine();
    System.err.println("Exception: " + inputMismatchException);
    System.out.println("Please enter a valid input!");
   }
   
   catch(CourseNotFoundException courseNotFoundException)
   {
    System.err.println("Exception: " + courseNotFoundException);
    System.out.println("Course does not exist");
   }
     
   keepLooping = true;
   while(keepLooping)
   {
    try
    {
     System.out.print("Course to register: ");
     int courseId = scan.nextInt();
     RegistrationCheckSystem registrationCheckSystem = new RegistrationCheckSystem();
     registrationCheckSystem.registerStudent(new Student(id,name, coursesFinished),courseId);
     keepLooping =false;
    }
   
   
   catch (InputMismatchException inputMismatchException)
   {
    scan.nextLine();
    System.err.println("Exception: " + inputMismatchException);
    System.out.println("Please enter a valid input!");
   }
   
   catch(CourseNotFoundException courseNotFoundException)
   {
    System.err.println("Exception: " + courseNotFoundException);
    System.out.println("Course does not exist");
   }
   catch(RegistrationException registrationException)
   {
    System.err.println("Execption: " + registrationException);
    System.out.println("Student has not completed the course prerequisites");
   }
   }
  }
 }
}


1 comment :

  1. liposuction surgery Korea's #1 Liposculpture Clinic. Lydian plastic surgery is the home of VIP patients. Celebrities, Influencers and Diplomats all know and trust Doctor An and Lydian plastic surgery clinic to provide detailed results.

    ReplyDelete

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact