package scheduler.InstructorPref;


import java.util.Collection;

/**
 *
 * 
        The proximal preference database contains the proximal preferenc
 *e
        assigned by the instructors for the current Phase (defined i
 *n
        ScheduleDB).  PPTemporal is composed of their Time Distance
 * preference,
        PPDistance is how far they wish their Lecture to be from
 * Lab or their Office,  
        and PPOrder is whether they want Lab before
 * (Order = 0) or after (Order = 1)
        Lecture.  All of these preferencing options are elaborated on in 
        Requirements 2.2.4
     * 
 * @author 
 * @version 
 *
 **/

public class ProximalPreference {

     /** Default Constructor **/
     public ProximalPreference() {

     }

     protected int ppt;

     protected int ppd;

     protected boolean ppo;

}