public class Employee{ private String name; private String employeeNo; public void setName(String name){ this.name = name; } public String getName(){ return this.name; } public void setEmployeeNo(String employeeNo){ this.employeeNo = employeeNo; } public String getEmployeeNo(){ return this.employeeNo; } public String toString(){ return this.name + " -- " + this.employeeNo; } }