/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package lab2stuff; /** * * @author jcmt */ public class Patron extends Person { private int PID; public Patron(String first, String last, String state, int zip, int age) { super(first, last, state, zip, age); } public Patron() { } }