Package org.hibernate.hql.internal.ast.util

Examples of org.hibernate.hql.internal.ast.util.ASTPrinter


    // Transform the tree.
    w.statement( hqlAst );

    if ( LOG.isDebugEnabled() ) {
      ASTPrinter printer = new ASTPrinter( SqlTokenTypes.class );
      LOG.debug( printer.showAsString( w.getAST(), "--- SQL AST ---" ) );
    }

    w.getParseErrorHandler().throwQueryException();

    return w;
View Full Code Here


    return parser;
  }

  void showHqlAst(AST hqlAst) {
    if ( LOG.isDebugEnabled() ) {
      ASTPrinter printer = new ASTPrinter( HqlTokenTypes.class );
      LOG.debug( printer.showAsString( hqlAst, "--- HQL AST ---" ) );
    }
  }
View Full Code Here

    this.sessionFactoryHelper = new SessionFactoryHelper( sfi );
    this.literalProcessor = new LiteralProcessor( this );
    this.tokenReplacements = tokenReplacements;
    this.collectionFilterRole = collectionRole;
    this.hqlParser = parser;
    this.printer = new ASTPrinter( SqlTokenTypes.class );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.hql.internal.ast.util.ASTPrinter

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.