package admin; import java.util.Collection; /** * The Instructor class contains the information necessary for the * administrative user to view and change the instructor preferences. */ abstract class Instructor { public String name; public String dept; public Integer WTU; public Collection preferedTeachingTimes; public Collection coursePreferences; }