Uses of Interface
org.hibernate.hql.FilterTranslator

Packages that use FilterTranslator
org.hibernate.hql This package defines the interface between Hibernate and the HQL query parser implementation (to allow switching between the 2.x and 3.0 HQL parsers). 
org.hibernate.hql.ast An ANTLR-based parser for Hibernate Query Language. 
org.hibernate.hql.classic This package contains the Hibernate 2.x query parser which is being end-of-lifed. 
org.hibernate.impl This package contains implementations of the central Hibernate APIs, especially the Hibernate session. 
 

Uses of FilterTranslator in org.hibernate.hql
 

Methods in org.hibernate.hql that return FilterTranslator
 FilterTranslator QueryTranslatorFactory.createFilterTranslator(String queryString, Map filters, SessionFactoryImplementor factory)
           
 

Uses of FilterTranslator in org.hibernate.hql.ast
 

Classes in org.hibernate.hql.ast that implement FilterTranslator
 class QueryTranslatorImpl
          A QueryTranslator that uses an AST based parser.
 

Methods in org.hibernate.hql.ast that return FilterTranslator
 FilterTranslator ASTQueryTranslatorFactory.createFilterTranslator(String queryString, Map filters, SessionFactoryImplementor factory)
           
 

Uses of FilterTranslator in org.hibernate.hql.classic
 

Methods in org.hibernate.hql.classic that return FilterTranslator
 FilterTranslator ClassicQueryTranslatorFactory.createFilterTranslator(String queryString, Map filters, SessionFactoryImplementor factory)
           
 

Uses of FilterTranslator in org.hibernate.impl
 

Methods in org.hibernate.impl that return FilterTranslator
 FilterTranslator SessionFactoryImpl.getFilter(String filterString, String collectionRole, boolean scalar, Map enabledFilters)