package scheduler.InstructorPref; import java.util.Collection; /** * * The pattern preference database contains the pattern preferenc *e assigned by the instructors for the current Phase (defined i *n ScheduleDB). PPClassPattern is used to describe the 'pattern' tha *t an instructor wishes to teach on (ie: MWF or TR or MWTRF), * PPLabPreference indicates the lab pattern that they instructor wishe *s to teach on (following the same nomenclature as PPClassPattern), * and the PPPreference is an integer representing their desire to teach on the specific pattern (0-10, explained in Requirements 2.2). * * @author * @version * **/ public class PatternPref { /** Default Constructor **/ public PatternPref() { } protected String ppcp; protected int ppp; protected String pplp; }