The project is to create a miniature version of the MIDS database. In this version there are two kinds of objects: students and courses.
Courses have a department (a 2 character code), a number, and a name (e.g. "Object Oriented Programming"). They have a meeting time, which is an instance of a MeetingTime object. I will give you a the MeetingTime class. Each course has an array of students that are in the class. Finally, there is a maximum number of students in a course. This is the same for all courses.
Students have a name and an alpha code. There is a minimum number of courses they must be enrolled in, which is the same for all students. They also have an array of classes they are taking.
There is the javadoc for the classes here. We provide the Code for the meeting time class here so you can use it in your project. You will:
To run this application from the command line without Ant, try: java -jar "/home/crabbe/NetBeansProjects/Mids/dist/Mids.jar"So to test my program, I change to the directory where the test.txt file is and type:
java -jar "/home/crabbe/NetBeansProjects/Mids/dist/Mids.jar" < test.txt