Skip to content

Commit

Permalink
JPA criteria - fixed javadoc checkstyle failure
Browse files Browse the repository at this point in the history
  • Loading branch information
sebersole committed Dec 15, 2018
1 parent 31617a3 commit b5a940b
Showing 1 changed file with 14 additions and 5 deletions.
Expand Up @@ -6,6 +6,8 @@
*/

/**
* @asciidoc
*
* = Producing SQM
*
* This package defines support for producing SQM trees (see {@link org.hibernate.query.sqm.tree}).
Expand All @@ -15,16 +17,25 @@
* {@link org.hibernate.query.spi.QueryEngine} which in turn is obtained via
* {@link org.hibernate.engine.spi.SessionFactoryImplementor#getQueryEngine()}.
*
*
* == From HQL/JPQL
*
* `SemanticQueryProducer` defines just a single method for producing SQM based on HQL:
* {@link org.hibernate.query.sqm.produce.spi.SemanticQueryProducer#interpret(String, SharedSessionContractImplementor)}.
* {@link org.hibernate.query.sqm.produce.spi.SemanticQueryProducer#interpret}.
* See {@link org.hibernate.query.hql.internal} for details
*
*
* == From Criteria
*
* todo (6.0) ...
* TDB
* Because criteria queries are already typed, `SemanticQueryProducer` offers 3 distinct methods for transforming
* select, update and delete criteria trees. Mainly this is done to take advantage of the distinct typing to
* define better return types. See
*
* * {@link org.hibernate.query.criteria.sqm.CriteriaQueryToSqmTransformer#transform}:: For select criteria
* transformation
* * _update and delete criteria transformations not yet implemented_
*
*
*
* [NOTE]
* ====
Expand All @@ -48,5 +59,3 @@
* * {@link org.hibernate.query.sqm.InterpretationException} represents an unexpected problem
*/
package org.hibernate.query.sqm.produce;

import org.hibernate.engine.spi.SharedSessionContractImplementor;

0 comments on commit b5a940b

Please sign in to comment.