1 //$Id: HavingParser.java,v 1.1 2004/12/08 00:22:20 oneovthafew Exp $2 package org.hibernate.hql.classic;3 4 5 /**6 * Parses the having clause of a hibernate query and translates it to an7 * SQL having clause.8 */9 public class HavingParser extends WhereParser {10 11 void appendToken(QueryTranslatorImpl q, String token) {12 q.appendHavingToken( token );13 }14 15 }16