FileDocCategorySizeDatePackage
InitializeCollectionEvent.javaAPI DocHibernate 3.2.5596Thu May 26 22:54:08 BST 2005org.hibernate.event

InitializeCollectionEvent

public class InitializeCollectionEvent extends AbstractEvent
An event that occurs when a collection wants to be initialized
author
Gavin King

Fields Summary
private final org.hibernate.collection.PersistentCollection
collection
Constructors Summary
public InitializeCollectionEvent(org.hibernate.collection.PersistentCollection collection, EventSource source)

		super(source);
		this.collection = collection;
	
Methods Summary
public org.hibernate.collection.PersistentCollectiongetCollection()

		return collection;