FileDocCategorySizeDatePackage
Thing.javaAPI DocHibernate 3.2.5832Sun Aug 22 08:38:16 BST 2004org.hibernate.test.unionsubclass

Thing.java

//$Id: Thing.java 4418 2004-08-22 13:38:16Z oneovthafew $
package org.hibernate.test.unionsubclass;

/**
 * @author Gavin King
 */
public class Thing {
	private long id;
	private String description;
	private Being owner;
	/**
	 * @return Returns the description.
	 */
	public String getDescription() {
		return description;
	}
	/**
	 * @param description The description to set.
	 */
	public void setDescription(String description) {
		this.description = description;
	}
	/**
	 * @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 owner.
	 */
	public Being getOwner() {
		return owner;
	}
	/**
	 * @param owner The owner to set.
	 */
	public void setOwner(Being owner) {
		this.owner = owner;
	}
}