/* * @topic T10324 Feb 6, 2014 Inheritance Demo * @brief class Employee */ package wk3demo; public class Employee { protected String ssn; private String title; public Employee() { ssn = "000-00-0000"; } public Employee( String ssn ) { this.ssn = ssn; } public void setTitle( String title ) { this.title = title; } }//class Employee