~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to src/org/hibernate/event/Initializable.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//$Id: Initializable.java 7793 2005-08-10 05:06:40Z oneovthafew $
 
2
package org.hibernate.event;
 
3
 
 
4
import org.hibernate.cfg.Configuration;
 
5
 
 
6
/**
 
7
 * An event listener that requires access to mappings to
 
8
 * initialize state at initialization time.
 
9
 * @author Gavin King
 
10
 */
 
11
public interface Initializable {
 
12
        public void initialize(Configuration cfg);
 
13
}