Package org.codehaus.enunciate.samples.petclinic.client.schema

Examples of org.codehaus.enunciate.samples.petclinic.client.schema.Specialty


                + "<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);
View Full Code Here

TOP

Related Classes of org.codehaus.enunciate.samples.petclinic.client.schema.Specialty

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.