The first error I put them in red
maybe you forgot to comment them
public void setEmployeeName( String name )
{
employeeName = name;
} // end method
setEmployeeName
// method to retrieve the employee name
public String getEmployeeName();
{
return employeeName;
} // end method
getEmployeeName
public void displayMessage();