KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > event > InitializeCollectionEventListener


1 //$Id: InitializeCollectionEventListener.java,v 1.2 2004/08/16 12:12:12 oneovthafew Exp $
2
package org.hibernate.event;
3
4 import org.hibernate.HibernateException;
5
6 import java.io.Serializable JavaDoc;
7
8 /**
9  * Defines the contract for handling of collection initialization events
10  * generated by a session.
11  *
12  * @author Gavin King
13  */

14 public interface InitializeCollectionEventListener extends Serializable JavaDoc {
15
16     public void onInitializeCollection(InitializeCollectionEvent event) throws HibernateException;
17
18 }
19
Popular Tags