FileDocCategorySizeDatePackage
Child.javaAPI DocHibernate 3.2.5767Tue Jun 27 16:17:04 BST 2006org.hibernate.test.jpa.cascade

Child

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

Fields Summary
private Long
id
private String
name
private Parent
parent
private ChildInfo
info
Constructors Summary
public Child()

	
public Child(String name)

		this.name = name;
	
Methods Summary
public java.lang.LonggetId()

		return id;
	
public ChildInfogetInfo()

		return info;
	
public java.lang.StringgetName()

		return name;
	
public ParentgetParent()

		return parent;
	
public voidsetId(java.lang.Long id)

		this.id = id;
	
public voidsetInfo(ChildInfo info)

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

		this.name = name;
	
public voidsetParent(Parent parent)

		this.parent = parent;