Package org.hibernate.metamodel.source.hbm.jaxb.mapping

Examples of org.hibernate.metamodel.source.hbm.jaxb.mapping.EntityElement


    }
  }

  private void processCurrentMappingDocument() {
    for ( Object entityElementO : currentMappingDocument.getMappingRoot().getClazzOrSubclassOrJoinedSubclass() ) {
      final EntityElement entityElement = (EntityElement) entityElementO;
      if ( XMLHibernateMapping.XMLClass.class.isInstance( entityElement ) ) {
        // we can immediately handle <class/> elements in terms of creating the hierarchy entry
        final XMLHibernateMapping.XMLClass xmlClass = (XMLHibernateMapping.XMLClass) entityElement;
        final RootEntitySourceImpl rootEntitySource = new RootEntitySourceImpl( currentMappingDocument, xmlClass );
        final EntityHierarchyImpl hierarchy = new EntityHierarchyImpl( rootEntitySource );
View Full Code Here

TOP

Related Classes of org.hibernate.metamodel.source.hbm.jaxb.mapping.EntityElement

Copyright © 2018 www.massapicom. 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.