package foo;

public class EmployeeBean extends PersonBean {
  public EmployeeBean() { }
 
  public int getEmpID() { return empID; }
  public void setEmpID(int empID) { this.empID = empID; }
 
  public static String getOrgName() { return "ACME Inc"; }
 
  private int empID;
}
Hosted by www.Geocities.ws

1