1 package org.hibernate.hql.ast.tree; 3 4 import org.hibernate.type.Type; 5 6 import antlr.SemanticException; 7 8 13 public interface SelectExpression { 14 19 Type getDataType(); 20 21 27 void setScalarColumnText(int i) throws SemanticException; 28 29 34 FromElement getFromElement(); 35 36 41 boolean isConstructor(); 42 43 48 boolean isReturnableEntity() throws SemanticException; 49 50 55 void setText(String text); 56 57 boolean isScalar() throws SemanticException; 58 59 void setAlias(String alias); 60 String getAlias(); 61 } 62 | Popular Tags |