package instructor; /** * This class contains the information for a course needed by Instructor Course * Preferences. * @author celind */ abstract class Course { String dept; String courseName; int courseID; }