Package org.eclipse.persistence.jpa.jpql.DeclarationResolver

Examples of org.eclipse.persistence.jpa.jpql.DeclarationResolver.Declaration


  public void convertUnqualifiedDeclaration(Declaration declaration) {

    if (parent != null) {

      // Retrieve the range identification variable from the parent declaration
      Declaration parentDeclaration = parent.getDeclarationResolverImp().getDeclarations().get(0);
      String outerVariableName = parentDeclaration.getVariableName();

      // Qualify the range expression to be fully qualified
      getDeclarationResolverImp().convertUnqualifiedDeclaration(declaration, outerVariableName);
    }
  }
View Full Code Here


  public void convertUnqualifiedDeclaration(Declaration declaration) {

    if (parent != null) {

      // Retrieve the range identification variable from the parent declaration
      Declaration parentDeclaration = parent.getDeclarationResolverImp().getDeclarations().get(0);
      String outerVariableName = parentDeclaration.getVariableName();

      // Qualify the range expression to be fully qualified
      getDeclarationResolverImp().convertUnqualifiedDeclaration(declaration, outerVariableName);
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.persistence.jpa.jpql.DeclarationResolver.Declaration

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.