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

Packages that use Pet
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 Pet in org.springframework.samples.petclinic
 

Methods in org.springframework.samples.petclinic that return Pet
 Pet Visit.getPet()
          Getter for property pet.
 Pet Owner.getPet(java.lang.String name)
          Return the Pet with the given name, or null if none found for this Owner.
 Pet Owner.getPet(java.lang.String name, boolean ignoreNew)
          Return the Pet with the given name, or null if none found for this Owner.
 Pet Clinic.loadPet(int id)
          Retrieve a Pet from the data store by id.
 

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

Methods in org.springframework.samples.petclinic with parameters of type Pet
 void Owner.addPet(Pet pet)
           
 void Visit.setPet(Pet pet)
          Setter for property pet.
 void Clinic.storePet(Pet pet)
          Save a Pet to the data store, either inserting or updating it.
 

Method parameters in org.springframework.samples.petclinic with type arguments of type Pet
protected  void Owner.setPetsInternal(java.util.Set<Pet> pets)
           
 

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

Methods in org.springframework.samples.petclinic.hibernate that return Pet
 Pet HibernateClinic.loadPet(int id)
           
 

Methods in org.springframework.samples.petclinic.hibernate with parameters of type Pet
 void HibernateClinic.storePet(Pet pet)
           
 

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

Methods in org.springframework.samples.petclinic.jdbc that return Pet
 Pet SimpleJdbcClinic.loadPet(int id)
           
 

Methods in org.springframework.samples.petclinic.jdbc with parameters of type Pet
 void SimpleJdbcClinic.storePet(Pet pet)
           
 

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

Methods in org.springframework.samples.petclinic.jpa that return Pet
 Pet EntityManagerClinic.loadPet(int id)
           
 

Methods in org.springframework.samples.petclinic.jpa with parameters of type Pet
 void EntityManagerClinic.storePet(Pet pet)
           
 

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

Methods in org.springframework.samples.petclinic.validation with parameters of type Pet
 void PetValidator.validate(Pet pet, org.springframework.validation.Errors errors)
           
 

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

Methods in org.springframework.samples.petclinic.web with parameters of type Pet
 java.lang.String EditPetForm.processSubmit(Pet pet, org.springframework.validation.BindingResult result, org.springframework.web.bind.support.SessionStatus status)
          Processes a pet edit form submission.
 java.lang.String AddPetForm.processSubmit(Pet pet, org.springframework.validation.BindingResult result, org.springframework.web.bind.support.SessionStatus status)
           
 



Copyright © 2010. All Rights Reserved.