OOP2

Planner.java

1
/**
2
 * This class will call the appropriate windows to use the program.
3
 * @author Maarten Vangeneugden - 1438256
4
 */
5
class Planner {
6
		public static void main(String[] args) {
7
				Course course = new MandatoryCourse("Informatiesystemen", 8, 1, 6845, true, 2);
8
				DetailedCourseView view = new DetailedCourseView(course);
9
				MainWindow window = new MainWindow("Ding", view.panel());
10
		}
11
}
12