FileDocCategorySizeDatePackage
Container.javaAPI DocHibernate 3.2.55823Sat May 21 09:22:16 BST 2005org.hibernate.test.legacy

Container

public class Container extends Object

Fields Summary
private List
oneToMany
private List
manyToMany
private List
components
private Set
composites
private Collection
cascades
private long
id
private Collection
bag
private Collection
lazyBag
private Map
ternaryMap
private Set
ternarySet
Constructors Summary
public Container()
Constructor for Container.

	
	   	 
	  
		super();
	
Methods Summary
public java.util.CollectiongetBag()
Returns the bag.

return
Collection

		return bag;
	
public java.util.CollectiongetCascades()
Returns the cascades.

return
Collection

		return cascades;
	
public java.util.ListgetComponents()
Returns the components.

return
List

		return components;
	
public java.util.SetgetComposites()
Gets the composites.

return
Returns a Set

		return composites;
	
public longgetId()
Returns the id.

return
long

		return id;
	
public java.util.CollectiongetLazyBag()
Returns the lazyBag.

return
Collection

		return lazyBag;
	
public java.util.ListgetManyToMany()
Returns the manyToMany.

return
List

		return manyToMany;
	
public java.util.ListgetOneToMany()
Returns the oneToMany.

return
List

		return oneToMany;
	
public java.util.MapgetTernaryMap()
Returns the ternary.

return
Map

		return ternaryMap;
	
public java.util.SetgetTernarySet()
Returns the ternarySet.

return
Set

		return ternarySet;
	
public voidsetBag(java.util.Collection bag)
Sets the bag.

param
bag The bag to set

		this.bag = bag;
	
public voidsetCascades(java.util.Collection cascades)
Sets the cascades.

param
cascades The cascades to set

		this.cascades = cascades;
	
public voidsetComponents(java.util.List components)
Sets the components.

param
components The components to set

		this.components = components;
	
public voidsetComposites(java.util.Set composites)
Sets the composites.

param
composites The composites to set

		this.composites = composites;
	
public voidsetId(long id)
Sets the id.

param
id The id to set

		this.id = id;
	
public voidsetLazyBag(java.util.Collection lazyBag)
Sets the lazyBag.

param
lazyBag The lazyBag to set

		this.lazyBag = lazyBag;
	
public voidsetManyToMany(java.util.List manyToMany)
Sets the manyToMany.

param
manyToMany The manyToMany to set

		this.manyToMany = manyToMany;
	
public voidsetOneToMany(java.util.List oneToMany)
Sets the oneToMany.

param
oneToMany The oneToMany to set

		this.oneToMany = oneToMany;
	
public voidsetTernaryMap(java.util.Map ternary)
Sets the ternary.

param
ternary The ternary to set

		this.ternaryMap = ternary;
	
public voidsetTernarySet(java.util.Set ternarySet)
Sets the ternarySet.

param
ternarySet The ternarySet to set

		this.ternarySet = ternarySet;