KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > hql > classic > HavingParser


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 an
7  * SQL having clause.
8  */

9 public class HavingParser extends WhereParser {
10
11     void appendToken(QueryTranslatorImpl q, String JavaDoc token) {
12         q.appendHavingToken( token );
13     }
14
15 }
16
Popular Tags