Package org.hibernate.jpamodelgen.annotation

Examples of org.hibernate.jpamodelgen.annotation.AnnotationMetaEntity


        String msg = "Skipping processing of annotations for " + fqn + " since xml configuration is metadata complete.";
        context.logMessage( Diagnostic.Kind.OTHER, msg );
        continue;
      }

      AnnotationMetaEntity metaEntity;
      if ( TypeUtils.containsAnnotation( element, Embeddable.class ) ) {
        metaEntity = new AnnotationEmbeddable( (TypeElement) element, context );
      }
      else {
        metaEntity = new AnnotationMetaEntity( (TypeElement) element, context );
      }

      if ( alreadyExistingMetaEntity != null ) {
        metaEntity.mergeInMembers( alreadyExistingMetaEntity.getMembers() );
      }
      addMetaEntityToContext( mirror, metaEntity );
    }
  }
View Full Code Here

TOP

Related Classes of org.hibernate.jpamodelgen.annotation.AnnotationMetaEntity

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.