| CourseFactory.java |
package lectures.factories;
import util.annotations.WebDocuments;
import lectures.inheritance.abstract_classes.FreshmanSeminar;
import lectures.inheritance.abstract_classes.RegularCourse;
@WebDocuments({"Lectures/Factories.pptx", "Lectures/Factories.pdf", "Videos/Factories.avi"})
public interface CourseFactory {
public RegularCourse getRegularCourse(String theTitle, String theDept, int theCourseNum);
public FreshmanSeminar getFreshmanSeminar(String theTitle, String theDept);
}