package scheduler.InstructorPref; import java.util.Collection; /** * * The course preference database contains a list of all the preference *s assigned by the instructors for the current Phase (defined i *n ScheduleDB). The CPClass is composed of a Major/CourseNo pairing * (ie: CPE308) and the CPPreference is an integer representing their * desire to teach at the specific class and day (0-10, explained in Requirements 2.2). * * @author * @version * **/ public class CoursePref { /** Default Constructor **/ public CoursePref() { } protected String cpc; protected int cpp; }