Class Address
- java.lang.Object
-
- org.hibernate.testing.orm.domain.animal.Address
-
@Embeddable public class Address extends Object
-
-
Constructor Summary
Constructors Constructor Description Address()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCity()
String
getCountry()
String
getPostalCode()
String
getStreet()
void
setCity(String city)
void
setCountry(String country)
void
setPostalCode(String postalCode)
void
setStreet(String street)
-
-
-
Method Detail
-
getStreet
public String getStreet()
-
setStreet
public void setStreet(String street)
-
getCity
public String getCity()
-
setCity
public void setCity(String city)
-
getPostalCode
public String getPostalCode()
-
setPostalCode
public void setPostalCode(String postalCode)
-
getCountry
public String getCountry()
-
setCountry
public void setCountry(String country)
-
-