Open Source Repository

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



org/hibernate/hql/classic/HavingParser.java
//$Id: HavingParser.java 4907 2004-12-08 00:24:14Z oneovthafew $
package org.hibernate.hql.classic;


/**
 * Parses the having clause of a hibernate query and translates it to an
 * SQL having clause.
 */
public class HavingParser extends WhereParser {

  void appendToken(QueryTranslatorImpl q, String token) {
    q.appendHavingTokentoken );
  }

}