package scheduler.InstructorPref; import java.util.Collection; /** * * The time preference database contains a list of all the preference *s assigned by the instructors for the current Phase (defined i *n ScheduleDB). The TPDays is the day {Monday,Tuesday,etc} of the * week, the TPHours is the time they wish to teach at in Military time *, and the TPPreference is an integer representing their desire to teach at the specific time and day (0-10, explained in Requirements 2.2). * * @author * @version * **/ public class TimePref { /** Default Constructor **/ public TimePref() { } protected String tpd; protected String tpg; protected int tpp; }