JSF completed, I feel alive

This commit is contained in:
2023-09-29 17:17:19 -05:00
parent af597b18d1
commit 229f114b3f
6 changed files with 52 additions and 17 deletions

View File

@@ -15,6 +15,7 @@ public class Employee {
private String employeeTitle;
private String photo;
public Employee(String employeeFirst, String employeeLast, String employeeTitle, String photo)
{
this.employeeFirst = employeeFirst;
@@ -107,4 +108,9 @@ public class Employee {
this.employeeFirst = employeeFirst;
}
@Override
public String toString() {
return "Employee{" + "employeeFirst=" + employeeFirst + ", employeeLast=" + employeeLast + ", employeeTitle=" + employeeTitle + ", photo=" + photo + '}';
}
}