Package org.hibernate.metamodel.source.hbm

Examples of org.hibernate.metamodel.source.hbm.HibernateXmlBinder.bindRoot()


  private void applyHibernateMappings(MetadataSources metadataSources, List<String> processedEntityNames) {
    final HibernateXmlBinder hibernateXmlBinder = new HibernateXmlBinder( this );
    for ( JaxbRoot jaxbRoot : metadataSources.getJaxbRootList() ) {
      // filter to just hbm-based roots
      if ( jaxbRoot.getRoot() instanceof XMLHibernateMapping ) {
        hibernateXmlBinder.bindRoot( jaxbRoot );
      }
    }
  }

  private void applyAnnotationMappings(MetadataSources metadataSources, List<String> processedEntityNames) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.