class Course {     private String courseNumber;     private String courseName;     private int creditHrs;     public Course (String number, String name, int creditHrs){         this.courseNumber = number;         this.courseName = name;         this.creditHrs = creditHrs;     }     public String getNumber() {         return courseNumber;     }     public String getName() {         return courseName;     }     public int getCreditHrs() {         return creditHrs;     }     public void setCourseNumber(String courseNumber) {         this.courseNumber = courseNumber;     }     public void setCourseName(String courseName) {         this.courseName = courseName;     }     public void setCreditHrs(int creditHrs) {         this.creditHrs = creditHrs;     } } class Student {     private String firstName;     private String lastName;     private String gender;     private String phoneNumber;     private String email;     private String jNumber;     protected ArrayList courseList;     public String getFullName() {         return firstName + " " + lastName;     }     public void setFirstName(String fName) {         firstName = fName;     }     public void setLastName(String lName) {         lastName = lName;     }     public String getGender() {         return gender;     }     public void setGender(String gen) {         gender = gen;     }     public String getPhoneNumber() {         return phoneNumber;     }     public void setPhoneNumber(String pNumber) {         phoneNumber = pNumber;     }     public String getEmail() {         return email;     }     public void setEmail(String e_mail) {         email = e_mail;     }     public String getJNumber() {         return jNumber;     }     public void setJNumber(String jNum) {         jNumber = jNum;     }     /* OVERRIDE!     Print student's basic information following the format in the assignment's description*/     public void printBasicInfo() {     }     /* OVERRIDE!     Print all courses following the format in the assignment's description */     public void printCourseList() {     }     /* OVERRIDE!     Enroll a new course by adding it into the courseList     Do NOT add a course if it is already in the courseList */     public void addCourse(MyCourse course) {     }     /* OVERRIDE!     If the course exists, remove it from the courseList         throw CourseNotFoundException if it doesn't exist*/     public void dropCourse(MyCourse course) {     }     /* OVERRIDE!     Return true if the course is currently enrolled, otherwise, false */     public boolean isEnrolled(MyCourse course) {         return false;     }     /* OVERRIDE!     Return total credit hours for all enrolled courses */     public int getTotalCredits() {         return 0;     } }

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

class Course {
    private String courseNumber;
    private String courseName;
    private int creditHrs;

    public Course (String number, String name, int creditHrs){
        this.courseNumber = number;
        this.courseName = name;
        this.creditHrs = creditHrs;
    }

    public String getNumber() {
        return courseNumber;
    }

    public String getName() {
        return courseName;
    }

    public int getCreditHrs() {
        return creditHrs;
    }

    public void setCourseNumber(String courseNumber) {
        this.courseNumber = courseNumber;
    }

    public void setCourseName(String courseName) {
        this.courseName = courseName;
    }

    public void setCreditHrs(int creditHrs) {
        this.creditHrs = creditHrs;
    }
}
class Student {
    private String firstName;
    private String lastName;
    private String gender;
    private String phoneNumber;
    private String email;
    private String jNumber;
    protected ArrayList courseList;

    public String getFullName() {
        return firstName + " " + lastName;
    }

    public void setFirstName(String fName) {
        firstName = fName;
    }

    public void setLastName(String lName) {
        lastName = lName;
    }

    public String getGender() {
        return gender;
    }

    public void setGender(String gen) {
        gender = gen;
    }

    public String getPhoneNumber() {
        return phoneNumber;
    }

    public void setPhoneNumber(String pNumber) {
        phoneNumber = pNumber;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String e_mail) {
        email = e_mail;
    }

    public String getJNumber() {
        return jNumber;
    }

    public void setJNumber(String jNum) {
        jNumber = jNum;
    }

    /* OVERRIDE!
    Print student's basic information following the format in the assignment's description*/
    public void printBasicInfo() {
    }

    /* OVERRIDE!
    Print all courses following the format in the assignment's description */
    public void printCourseList() {
    }

    /* OVERRIDE!
    Enroll a new course by adding it into the courseList
    Do NOT add a course if it is already in the courseList */
    public void addCourse(MyCourse course) {
    }

    /* OVERRIDE!
    If the course exists, remove it from the courseList
        throw CourseNotFoundException if it doesn't exist*/
    public void dropCourse(MyCourse course) {
    }

    /* OVERRIDE!
    Return true if the course is currently enrolled, otherwise, false */
    public boolean isEnrolled(MyCourse course) {
        return false;
    }

    /* OVERRIDE!
    Return total credit hours for all enrolled courses */
    public int getTotalCredits() {
        return 0;
    }
}

[1] Description: You're asked to create a basic Student's Enrollment System with the provided
Student and Course classes. Please download the source code files from Blackboard. Create two
new classes: (i) FirstName_LastName (replace by your name) that extends the Student class and
(ii) MyCourse that extends the Course class.
[2] Requirements:
a. You're NOT allowed to change or add ANYTHING in the provided Student and Course
classes.
b. Provide a no-arg constructor for your FirstName_LastName class. The no-arg
constructor should initialize all the data fields in Student class based on your
information and your current semester's enrolled courses.
c. Override 6 methods in Student class, as marked in the source code comments. Please
read the comment sections carefully for descriptions.
d. Override the equals() method in MyCourse class. Two courses are equal if they have the
same course number, course name, and credit hours. You should use this method for all
courses comparisons.
e. Create a customized exception class CourseNotFoundException, throw this exception in
the dropCourse() method if the dropping course doesn't exist in the courseList. The
Transcribed Image Text:[1] Description: You're asked to create a basic Student's Enrollment System with the provided Student and Course classes. Please download the source code files from Blackboard. Create two new classes: (i) FirstName_LastName (replace by your name) that extends the Student class and (ii) MyCourse that extends the Course class. [2] Requirements: a. You're NOT allowed to change or add ANYTHING in the provided Student and Course classes. b. Provide a no-arg constructor for your FirstName_LastName class. The no-arg constructor should initialize all the data fields in Student class based on your information and your current semester's enrolled courses. c. Override 6 methods in Student class, as marked in the source code comments. Please read the comment sections carefully for descriptions. d. Override the equals() method in MyCourse class. Two courses are equal if they have the same course number, course name, and credit hours. You should use this method for all courses comparisons. e. Create a customized exception class CourseNotFoundException, throw this exception in the dropCourse() method if the dropping course doesn't exist in the courseList. The
thrown exception object should contain a meaningful message, including course number,
course name, and credit hours for the not found course. (hint: I demo the
InvalidSideException in Feb 24th lecture, please review for reference)
f. Submission with compile errors will receive at most 70% of the grade.
[3] Sample outputs for printBasicInfo) and printCourseList() methods:
John_Smith js = new John_Smith();
js.printBasicInfo();
Full Name: John Smith
Gender: Male
Phone Number: (210)000-0000
Email: jsmith@jaguar.tamu.edu
JNumber: JO00000
js.printCourselist();
John Smith's Course List
CSCI 1437 Programming Fundamentals II
4 hrs
CISA 2306 Computer Networks
3 hrs
CISA 2356 Systems Analysis and Design
3 hrs
Total
10 hrs
Transcribed Image Text:thrown exception object should contain a meaningful message, including course number, course name, and credit hours for the not found course. (hint: I demo the InvalidSideException in Feb 24th lecture, please review for reference) f. Submission with compile errors will receive at most 70% of the grade. [3] Sample outputs for printBasicInfo) and printCourseList() methods: John_Smith js = new John_Smith(); js.printBasicInfo(); Full Name: John Smith Gender: Male Phone Number: (210)000-0000 Email: jsmith@jaguar.tamu.edu JNumber: JO00000 js.printCourselist(); John Smith's Course List CSCI 1437 Programming Fundamentals II 4 hrs CISA 2306 Computer Networks 3 hrs CISA 2356 Systems Analysis and Design 3 hrs Total 10 hrs
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY