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

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


    }
  }

  private void processElements(List subElements, SubclassEntityContainer container) {
    for ( Object subElementO : subElements ) {
      final SubEntityElement subElement = (SubEntityElement) subElementO;
      final SubclassEntitySourceImpl subclassEntitySource = new SubclassEntitySourceImpl( currentMappingDocument, subElement );
      container.add( subclassEntitySource );
      final String subEntityName = subclassEntitySource.getEntityName();
      subEntityContainerMap.put( subEntityName, subclassEntitySource );
    }
View Full Code Here

TOP

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

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.