
i have this class diagram with three classes: Curriculum, Course, and Lecture. Your class diagram should reflect all the following design decisions: ïâ??§ A course is composed of zero or more lectures. ïâ??§ A curriculum contains (or consists of) one or more courses. All the courses of a curriculum can be accessed from the curriculum, but not the other way around. ïâ??§ A course may have other courses as prerequisites. ïâ??§ The Course class has the following field and methods: o protected String name o public String getName() o public void setName(String name)
I wish Write a Java application that uses the classes and methods above