package user; /** * Instructor class is a User with privileges to set their own preferences. * * @author sbayley **/ public abstract class Instructor extends User { /** * Create an Instructor with the provided params. * * @param ID - the instructor's unique EMPL ID firstName/lastName - * instructor's first name and last name **/ public Instructor(String ID, String first, String last) { super(Integer.parseInt(ID), first, last); } }