Open Source Repository

Home /hibernate/hibernate-3.2.7.ga | Repository Home



org/hibernate/event/InitializeCollectionEvent.java
//$Id: InitializeCollectionEvent.java 14313 2008-02-06 07:46:52Z gbadner $
package org.hibernate.event;

import org.hibernate.collection.PersistentCollection;

/**
 * An event that occurs when a collection wants to be
 * initialized
 
 @author Gavin King
 */
public class InitializeCollectionEvent extends AbstractCollectionEvent {

  public InitializeCollectionEvent(PersistentCollection collection, EventSource source ) {
    supergetLoadedCollectionPersistercollection, source ),
        collection,
        source,
        getLoadedOwnerOrNullcollection, source ),
        getLoadedOwnerIdOrNullcollection, source ) );
  }
}