Package org.eclipse.persistence.jpa.jpql.tools.model.query

Examples of org.eclipse.persistence.jpa.jpql.tools.model.query.ResultVariableStateObject


    return this;
  }

  protected void resultVariable(String resultVariable, boolean as) {

    StateObject stateObject = new ResultVariableStateObject(
      getParent(),
      pop(),
      as,
      resultVariable
    );
View Full Code Here


    @Override
    public void visit(ResultVariable expression) {

      expression.getSelectExpression().accept(BasicStateObjectBuilder.this);

      ResultVariableStateObject stateObject = new ResultVariableStateObject(
        parent,
        BasicStateObjectBuilder.this.stateObject,
        expression.hasAs(),
        literal(expression.getResultVariable(), LiteralType.RESULT_VARIABLE)
      );

      stateObject.setExpression(expression);
      this.stateObject = stateObject;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.persistence.jpa.jpql.tools.model.query.ResultVariableStateObject

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.