org.hibernate.test.propertyref.basic
Class Address

java.lang.Object
  extended by org.hibernate.test.propertyref.basic.Address

public class Address
extends Object


Constructor Summary
Address()
           
 
Method Summary
 String getAddress()
           
 String getCountry()
           
 Long getId()
           
 Person getPerson()
           
 String getZip()
           
 void setAddress(String address)
           
 void setCountry(String country)
           
 void setId(Long id)
           
 void setPerson(Person person)
           
 void setZip(String zip)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Address

public Address()
Method Detail

getId

public Long getId()
Returns:
Returns the id.

setId

public void setId(Long id)
Parameters:
id - The id to set.

getPerson

public Person getPerson()
Returns:
Returns the person.

setPerson

public void setPerson(Person person)
Parameters:
person - The person to set.

getAddress

public String getAddress()
Returns:
Returns the address.

setAddress

public void setAddress(String address)
Parameters:
address - The address to set.

getCountry

public String getCountry()
Returns:
Returns the country.

setCountry

public void setCountry(String country)
Parameters:
country - The country to set.

getZip

public String getZip()
Returns:
Returns the zip.

setZip

public void setZip(String zip)
Parameters:
zip - The zip to set.


Copyright © 2001-2012 Red Hat, Inc. All Rights Reserved.