1 package org.hibernate.hql.ast.tree; 3 4 import antlr.SemanticException; 5 import antlr.collections.AST; 6 7 12 public class SelectExpressionImpl extends FromReferenceNode implements SelectExpression { 13 14 public void resolveIndex(AST parent) throws SemanticException { 15 throw new UnsupportedOperationException (); 16 } 17 18 public void setScalarColumnText(int i) throws SemanticException { 19 String text = getFromElement().renderScalarIdentifierSelect( i ); 20 setText( text ); 21 } 22 23 public void resolve(boolean generateJoin, boolean implicitJoin, String classAlias, AST parent) throws SemanticException { 24 return; 26 } 27 } 28 | Popular Tags |