1 package org.hibernate.cfg; 3 4 import org.apache.commons.logging.Log; 5 import org.apache.commons.logging.LogFactory; 6 import org.hibernate.mapping.Collection; 7 import org.hibernate.MappingException; 8 9 17 public abstract class SecondPass extends HbmBinder.SecondPass { 18 protected static Log log = LogFactory.getLog(SecondPass.class); 19 20 public SecondPass( 21 Mappings mappings, 22 Collection coll) { 23 super(null, mappings, coll); 24 } 25 26 public Collection getCollection() { 27 return collection; 28 } 29 30 public Mappings getMappings() { 31 return mappings; 32 } 33 34 public abstract void secondPass(java.util.Map persistentClasses, java.util.Map inheritedMetas) 36 throws MappingException; 37 } 38 | Popular Tags |