org.hibernate.test.join
Class Person

java.lang.Object
  extended by org.hibernate.test.join.Person
Direct Known Subclasses:
Customer, Employee, User

public class Person
extends Object


Constructor Summary
Person()
           
 
Method Summary
 String getAddress()
           
 String getCountry()
           
 double getHeightInches()
           
 long getId()
           
 String getName()
           
 char getSex()
           
 String getSpecies()
           
 String getZip()
           
 void setAddress(String address)
           
 void setCountry(String country)
           
 void setHeightInches(double heightInches)
           
 void setId(long id)
           
 void setName(String identity)
           
 void setSex(char sex)
           
 void setZip(String zip)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Person

public Person()
Method Detail

getSex

public char getSex()
Returns:
Returns the sex.

setSex

public void setSex(char sex)
Parameters:
sex - The sex to set.

getId

public long getId()
Returns:
Returns the id.

setId

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

getName

public String getName()
Returns:
Returns the identity.

setName

public void setName(String identity)
Parameters:
identity - The identity to set.

getSpecies

public String getSpecies()

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.

getHeightInches

public double getHeightInches()
Returns:
the The height in inches.

setHeightInches

public void setHeightInches(double heightInches)
Parameters:
heightInches - The height in inches.

setAddress

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

getAddress

public String getAddress()


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