Author: stliu
Date: 2009-12-29 10:56:02 -0500 (Tue, 29 Dec 2009)
New Revision: 18344
Modified:
core/trunk/core/src/main/java/org/hibernate/hql/QueryTranslator.java
Log:
minor change, correct javadoc spell
Modified: core/trunk/core/src/main/java/org/hibernate/hql/QueryTranslator.java
===================================================================
--- core/trunk/core/src/main/java/org/hibernate/hql/QueryTranslator.java 2009-12-29
15:55:12 UTC (rev 18343)
+++ core/trunk/core/src/main/java/org/hibernate/hql/QueryTranslator.java 2009-12-29
15:56:02 UTC (rev 18344)
@@ -39,7 +39,7 @@
import java.util.Set;
/**
- * Defines the constract of an HQL->SQL translator.
+ * Defines the contract of an HQL->SQL translator.
*
* @author josh
*/
@@ -74,7 +74,7 @@
throws HibernateException;
/**
- * Perform an iterate operation given the underlying query defintion.
+ * Perform an iterate operation given the underlying query definition.
*
* @param queryParameters The query bind parameters.
* @param session The session owning this query.
@@ -85,7 +85,7 @@
throws HibernateException;
/**
- * Perform a scroll operation given the underlying query defintion.
+ * Perform a scroll operation given the underlying query definition.
*
* @param queryParameters The query bind parameters.
* @param session The session owning this query.
@@ -96,7 +96,7 @@
throws HibernateException;
/**
- * Perform a bulk update/delete operation given the underlying query defintion.
+ * Perform a bulk update/delete operation given the underlying query definition.
*
* @param queryParameters The query bind parameters.
* @param session The session owning this query.
@@ -107,7 +107,7 @@
throws HibernateException;
/**
- * Returns the set of query spaces (table names) that the query referrs to.
+ * Returns the set of query spaces (table names) that the query refers to.
*
* @return A set of query spaces (table names).
*/
@@ -115,7 +115,7 @@
/**
* Retrieve the query identifier for this translator. The query identifier is
- * used in stats collection.
+ * used in states collection.
*
* @return the identifier
*/
@@ -181,7 +181,7 @@
/**
* Does the translated query contain collection fetches?
*
- * @return tru if the query does contain collection fetched;
+ * @return true if the query does contain collection fetched;
* false otherwise.
*/
boolean containsCollectionFetches();
Show replies by date