FileDocCategorySizeDatePackage
Parent.javaAPI DocHibernate 3.2.5813Tue May 08 20:42:44 BST 2007org.hibernate.test.reattachment

Parent

public class Parent extends Object
Parent entity
author
Steve Ebersole

Fields Summary
private String
name
private Parent
other
private Set
children
Constructors Summary
public Parent()


	  
	
public Parent(String name)

		this.name = name;
	
public Parent(String name, Parent other)

		this.name = name;
		this.other = other;
	
Methods Summary
public java.util.SetgetChildren()

		return children;
	
public java.lang.StringgetName()

		return name;
	
public org.hibernate.test.reattachment.ParentgetOther()

		return other;
	
public voidsetChildren(java.util.Set children)

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

		this.name = name;
	
public voidsetOther(org.hibernate.test.reattachment.Parent other)

		this.other = other;