//$Id: Person.java 7203 2005-06-19 02:01:05Z oneovthafew $ package org.hibernate.test.join; /** * @author Gavin King */ public class Person { private long id; private String name; private String address; private String zip; private String country; private double heightInches; private char sex; /** * @return Returns the sex. */ public char getSex() { return sex; } /** * @param sex The sex to set. */ public void setSex(char sex) { this.sex = sex; } /** * @return Returns the id. */ public long getId() { return id; } /** * @param id The id to set. */ public void setId(long id) { this.id = id; } /** * @return Returns the identity. */ public String getName() { return name; } /** * @param identity The identity to set. */ public void setName(String identity) { this.name = identity; } public String getSpecies() { return null; } /** * @return Returns the country. */ public String getCountry() { return country; } /** * @param country The country to set. */ public void setCountry(String country) { this.country = country; } /** * @return Returns the zip. */ public String getZip() { return zip; } /** * @param zip The zip to set. */ public void setZip(String zip) { this.zip = zip; } /** * @return the The height in inches. */ public double getHeightInches() { return heightInches; } /** * @param heightInches The height in inches. */ public void setHeightInches(double heightInches) { this.heightInches = heightInches; } /** * @param address The address to set. */ public void setAddress(String address) { this.address = address; } public String getAddress() { return address; } }