KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > loader > collection > CollectionInitializer


1 //$Id: CollectionInitializer.java,v 1.2 2005/06/13 20:10:19 oneovthafew Exp $
2
package org.hibernate.loader.collection;
3
4 import java.io.Serializable JavaDoc;
5
6 import org.hibernate.HibernateException;
7 import org.hibernate.engine.SessionImplementor;
8
9 /**
10  * An interface for collection loaders
11  * @see BasicCollectionLoader
12  * @see OneToManyLoader
13  * @author Gavin King
14  */

15 public interface CollectionInitializer {
16     /**
17      * Initialize the given collection
18      */

19     public void initialize(Serializable JavaDoc id, SessionImplementor session) throws HibernateException;
20 }
21
22
23
24
25
26
27
Popular Tags