Package org.hibernate.graph.spi

Examples of org.hibernate.graph.spi.GraphNodeImplementor.containsAttribute()


    // to it, fetch.
    // ENTITY nature handled by super.
    final GraphNodeImplementor graphNode = graphStack.peekLast();
    if ( attributeDefinition.getAssociationNature() == AssociationAttributeDefinition.AssociationNature.COLLECTION
        && ! graphNode.equals( NON_EXIST_SUBGRAPH_NODE)
        && graphNode.containsAttribute( attributeDefinition.getName() )) {
      currentSource().buildCollectionAttributeFetch( attributeDefinition, fetchStrategy );
    }
   
    super.foundCircularAssociation( attributeDefinition );
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.