Open Source Repository

Home /hibernate/hibernate-3.2.6.ga | Repository Home



org/hibernate/hql/ast/tree/Case2Node.java
// $Id: Case2Node.java 7460 2005-07-12 20:27:29Z steveebersole $
package org.hibernate.hql.ast.tree;

import org.hibernate.hql.ast.util.ColumnHelper;
import org.hibernate.type.Type;

import antlr.SemanticException;

/**
 * Represents a case ... when .. then ... else ... end expression in a select.
 *
 @author Gavin King
 */
public class Case2Node extends AbstractSelectExpression implements SelectExpression {
  
  public Type getDataType() {
    return getFirstThenNode().getDataType();
  }

  private SelectExpression getFirstThenNode() {
    return (SelectExpressiongetFirstChild().getNextSibling().getFirstChild().getNextSibling();
  }

  public void setScalarColumnText(int ithrows SemanticException {
    ColumnHelper.generateSingleScalarColumnthis, i );
  }

}