package database; /** * This class contains relevant information about specific instructors. * Note that some of this information, such as emplId, is meant only * for administrators to see. * @author jroll * */ public abstract class Instructor extends DataItem { private String name, alias, office, phone, emplId, notes; private float wtus; public enum Title {LECTURER, PROFESSOR, ASSISTANT_PROFESSOR}; Title title; }