Uses of Class
org.springframework.samples.petclinic.Visit

Packages that use Visit
org.springframework.samples.petclinic The classes in this package represent PetClinic's business layer. 
org.springframework.samples.petclinic.hibernate The classes in this package represent the Hibernate implementation of PetClinic's persistence layer. 
org.springframework.samples.petclinic.jdbc The classes in this package represent the JDBC implementation of PetClinic's persistence layer. 
org.springframework.samples.petclinic.jpa The classes in this package represent the JPA implementation of PetClinic's persistence layer. 
org.springframework.samples.petclinic.validation The classes in this package represent the set of Validator objects the Business Layer makes available to the Presentation Layer. 
org.springframework.samples.petclinic.web The classes in this package represent PetClinic's web presentation layer. 
 

Uses of Visit in org.springframework.samples.petclinic
 

Methods in org.springframework.samples.petclinic that return types with arguments of type Visit
 java.util.List<Visit> Pet.getVisits()
           
protected  java.util.Set<Visit> Pet.getVisitsInternal()
           
 

Methods in org.springframework.samples.petclinic with parameters of type Visit
 void Pet.addVisit(Visit visit)
           
 void Clinic.storeVisit(Visit visit)
          Save a Visit to the data store, either inserting or updating it.
 

Method parameters in org.springframework.samples.petclinic with type arguments of type Visit
protected  void Pet.setVisitsInternal(java.util.Set<Visit> visits)
           
 

Uses of Visit in org.springframework.samples.petclinic.hibernate
 

Methods in org.springframework.samples.petclinic.hibernate with parameters of type Visit
 void HibernateClinic.storeVisit(Visit visit)
           
 

Uses of Visit in org.springframework.samples.petclinic.jdbc
 

Methods in org.springframework.samples.petclinic.jdbc with parameters of type Visit
 void SimpleJdbcClinic.storeVisit(Visit visit)
           
 

Uses of Visit in org.springframework.samples.petclinic.jpa
 

Methods in org.springframework.samples.petclinic.jpa with parameters of type Visit
 void EntityManagerClinic.storeVisit(Visit visit)
           
 

Uses of Visit in org.springframework.samples.petclinic.validation
 

Methods in org.springframework.samples.petclinic.validation with parameters of type Visit
 void VisitValidator.validate(Visit visit, org.springframework.validation.Errors errors)
           
 

Uses of Visit in org.springframework.samples.petclinic.web
 

Methods in org.springframework.samples.petclinic.web with parameters of type Visit
 java.lang.String AddVisitForm.processSubmit(Visit visit, org.springframework.validation.BindingResult result, org.springframework.web.bind.support.SessionStatus status)
           
 



Copyright © 2010. All Rights Reserved.