+ "<br/>Last Name: " + vet.getLastName()
+ "<br/>Phone: " + vet.getTelephone()
+ "<br/>Specialties: " ;
Iterator specialtiesIt = vet.getSpecialties().iterator();
while (specialtiesIt.hasNext()) {
Specialty specialty = (Specialty) specialtiesIt.next();
html = html + specialty.getName();
if (specialtiesIt.hasNext()) {
html += ",";
}
}
HTML htmlValue = new HTML(html);