FileDocCategorySizeDatePackage
Hive.javaAPI DocHibernate 3.2.5627Sat Feb 12 00:27:32 GMT 2005org.hibernate.test.unionsubclass

Hive.java

//$Id: Hive.java 5686 2005-02-12 07:27:32Z steveebersole $
package org.hibernate.test.unionsubclass;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Gavin King
 */
public class Hive {
	private long id;
	private Location location;
	private List members = new ArrayList();
	public List getMembers() {
		return members;
	}
	public void setMembers(List hives) {
		this.members = hives;
	}
	public long getId() {
		return id;
	}
	public void setId(long id) {
		this.id = id;
	}
	public Location getLocation() {
		return location;
	}
	public void setLocation(Location location) {
		this.location = location;
	}
}