This project is in no way shape or form professionally associated with Miami Dade College, this is a practice project for the COP 2800 course.
This project is a Java application that simulates a basic college registration system. The system will allow students to register for courses, view their schedule, and view their grades. The system will also allow faculty to view their schedule, view their students, and enter grades.
src
: the folder to maintain sourcesView
: the folder to maintain the view classesModels
: the folder to maintain the model classesCourseRoster.java
: the source java file for the CourseRoster classStudents.java
: the source java file for the Students classStudentCourse.java
: the source java file for wrapper class for Schedule and CourseRosterFaculty.java
: the source java file for the Faculty classSchedule.java
: the source java file for the Schedule classMajor.java
: the source java file for the Major classDepartment.java
: the source java file for the Department class
Controller
: the folder to maintain the controller classesMain
: the folder to maintain the main classMain
: the main point of execution of the program
Data
: the folder to maintain the data classesStudents.txt
: the source file for the Students dataFaculty.txt
: the source file for the Faculty dataMajor.txt
: the source file for the Major dataDepartment.txt
: the source file for the Department dataCourseRoster.txt
: the source file for the CourseRoster dataSchedule.txt
: the source file for the Schedule data
Util
: the folder to maintain the utility classesDataReader.java
: the source java file for the DataReader classDataUtil.java
: the source java file for the DataUtil classDataWriter.java
: the source java file for the DataWriter class
lib
: the folder to maintain dependencies