FileDocCategorySizeDatePackage
Holder.javaAPI DocHibernate 3.2.51635Sun Sep 26 00:18:28 BST 2004org.hibernate.test.legacy

Holder

public class Holder extends Object implements Named

Fields Summary
private String
id
private List
ones
private Foo[]
fooArray
private Set
foos
private String
name
private Holder
otherHolder
Constructors Summary
public Holder()

	
public Holder(String name)

		this.name=name;
	
Methods Summary
public Foo[]getFooArray()
Returns the fooArray.

return
Foo[]

		return fooArray;
	
public java.util.SetgetFoos()
Returns the foos.

return
Set

		return foos;
	
public java.lang.StringgetId()
Returns the id.

return
String

		return id;
	
public java.lang.StringgetName()
Returns the name.

return
String

		return name;
	
public java.util.ListgetOnes()
Returns the ones.

return
List

		return ones;
	
public org.hibernate.test.legacy.HoldergetOtherHolder()

		return otherHolder;
	
public voidsetFooArray(Foo[] fooArray)
Sets the fooArray.

param
fooArray The fooArray to set

		this.fooArray = fooArray;
	
public voidsetFoos(java.util.Set foos)
Sets the foos.

param
foos The foos to set

		this.foos = foos;
	
public voidsetId(java.lang.String id)
Sets the id.

param
id The id to set

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

param
name The name to set

		this.name = name;
	
public voidsetOnes(java.util.List ones)
Sets the ones.

param
ones The ones to set

		this.ones = ones;
	
public voidsetOtherHolder(org.hibernate.test.legacy.Holder holder)

		otherHolder = holder;