FileDocCategorySizeDatePackage
Entity.javaAPI DocHibernate 3.2.5782Fri Aug 18 16:52:34 BST 2006org.hibernate.test.instrument.domain

Entity

public class Entity extends Object
todo: describe Entity
author
Steve Ebersole

Fields Summary
private Long
id
private String
name
private Entity
child
private Entity
sibling
Constructors Summary
public Entity()

	
public Entity(String name)

		this.name = name;
	
Methods Summary
public org.hibernate.test.instrument.domain.EntitygetChild()

		return child;
	
public java.lang.LonggetId()

		return id;
	
public java.lang.StringgetName()

		return name;
	
public org.hibernate.test.instrument.domain.EntitygetSibling()

		return sibling;
	
public voidsetChild(org.hibernate.test.instrument.domain.Entity child)

		this.child = child;
	
public voidsetId(java.lang.Long id)

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

		this.name = name;
	
public voidsetSibling(org.hibernate.test.instrument.domain.Entity sibling)

		this.sibling = sibling;