package instructor; import java.util.Collection; /** * This class contains individual instructor information needed by Instructor * Preferences. * @author celind */ public abstract class Instructor { Name name; String email; Collection coursePreferences; Collection timePreferences; String dept; } /** * Contains the information needed for an instructor name. */ abstract class Name { String first; String middle; String last; String suffix; }