Package org.hibernate.search.annotations

Examples of org.hibernate.search.annotations.ProvidedId


      boolean disableOptimizationsArg,
      PathsContext pathsContext) {
    List<XClass> hierarchy = ReflectionHelper.createXClassHierarchy( parseContext.getCurrentClass() );

    // Iterate the class hierarchy top down. This allows to override the default analyzer for the properties if the class holds one
    ProvidedId explicitProvidedIdAnnotation = null;
    XClass providedIdHostingClass = null;
    for ( XClass currentClass : hierarchy ) {
      if ( currentClass.getAnnotation( ProvidedId.class ) != null ) {
        explicitProvidedIdAnnotation = currentClass.getAnnotation( ProvidedId.class );
        providedIdHostingClass = currentClass;
View Full Code Here

TOP

Related Classes of org.hibernate.search.annotations.ProvidedId

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.