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

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


    else if ( XMLJoinedSubclassElement.class.isInstance( entityElement ) ) {
      final XMLJoinedSubclassElement xmlJoinedSubclass = (XMLJoinedSubclassElement) entityElement;
      processElements( xmlJoinedSubclass.getJoinedSubclass(), container );
    }
    else if ( XMLUnionSubclassElement.class.isInstance( entityElement ) ) {
      final XMLUnionSubclassElement xmlUnionSubclass = (XMLUnionSubclassElement) entityElement;
      processElements( xmlUnionSubclass.getUnionSubclass(), container );
    }
  }
View Full Code Here

TOP

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

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.