Package org.hibernate.metamodel.domain

Examples of org.hibernate.metamodel.domain.Superclass


          parent = binding.getEntity();
        }
        // for classes annotated w/ @MappedSuperclass we just create the domain instance
        // the attribute bindings will be part of the first entity subclass
        else if ( ConfiguredClassType.MAPPED_SUPERCLASS.equals( entityClass.getConfiguredClassType() ) ) {
          parent = new Superclass( entityClass.getName(), parent );
        }
        // for classes which are not annotated at all we create the NonEntity domain class
        // todo - not sure whether this is needed. It might be that we don't need this information (HF)
        else {
          parent = new NonEntity( entityClass.getName(), parent );
View Full Code Here

TOP

Related Classes of org.hibernate.metamodel.domain.Superclass

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.