package scheduler.InstructorDB; import scheduler.InstructorPref.*; import java.util.Collection; /** * * The InstructorEntry object consists of the instructor's preferences, * any diabilities, their first and last name, department, office number, e-mail, available WTUs, and any notes. * * @author * @version * **/ public class InstructorEntry { /** Default Constructor **/ public InstructorEntry() { } protected InstructorPref instructorpref; protected Disabilities disabilities; protected String firstname; protected String lastname; protected String department; protected String deptofficenum; protected String email; protected int wtus; protected String notes; }