/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package lab2stuff; /** * * @author jcmt */ public class Employee extends Person { /* public enum SPEC {reference, special_collections, research, desk, media}; */ //private SPEC empSpec; public Employee(String first, String last, String state, int zip, int age) { super(first, last, state, zip, age); //this.empSpec = empSpec; } public Employee() { } @Override public void setAge(int a) { if (a >= 18) { super.setAge(a); } } /* public SPEC getEmpSpec() { return empSpec; } public void setEmpSpec(SPEC empSpec) { this.empSpec = empSpec; } */ }