FileDocCategorySizeDatePackage
Person.javaAPI DocHibernate 3.2.5761Sun Dec 19 15:01:26 GMT 2004org.hibernate.test.extendshbm

Person

public class Person extends Object
author
Gavin King

Fields Summary
private long
id
private String
name
private char
sex
Constructors Summary
Methods Summary
public longgetId()

return
Returns the id.

		return id;
	
public java.lang.StringgetName()

return
Returns the identity.

		return name;
	
public chargetSex()

return
Returns the sex.

		return sex;
	
public voidsetId(long id)

param
id The id to set.

		this.id = id;
	
public voidsetName(java.lang.String identity)

param
identity The identity to set.

		this.name = identity;
	
public voidsetSex(char sex)

param
sex The sex to set.

		this.sex = sex;