[hibernate-commits] Hibernate SVN: r18925 - core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/dialect.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Mar 4 19:56:10 EST 2010


Author: stliu
Date: 2010-03-04 19:56:10 -0500 (Thu, 04 Mar 2010)
New Revision: 18925

Modified:
   core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/dialect/Dialect.java
Log:
correct typo in javadoc

Modified: core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/dialect/Dialect.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/dialect/Dialect.java	2010-03-04 21:55:10 UTC (rev 18924)
+++ core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/dialect/Dialect.java	2010-03-05 00:56:10 UTC (rev 18925)
@@ -362,7 +362,7 @@
 	// hibernate type mapping support ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 	/**
-	 * Get the name of the Hibernate {@link org.hibernate.type.Type} associated with th given
+	 * Get the name of the Hibernate {@link org.hibernate.type.Type} associated with the given
 	 * {@link java.sql.Types} typecode.
 	 *
 	 * @param code The {@link java.sql.Types} typecode
@@ -433,7 +433,7 @@
 	}
 
 	/**
-	 * Retrieves a map of the dialect's registered fucntions
+	 * Retrieves a map of the dialect's registered functions
 	 * (functionName => {@link org.hibernate.dialect.function.SQLFunction}).
 	 *
 	 * @return The map of registered functions.
@@ -454,7 +454,7 @@
 	}
 
 
-	// native identifier generatiion ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+	// native identifier generation ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 	/**
 	 * The class (which implements {@link org.hibernate.id.IdentifierGenerator})
@@ -510,7 +510,7 @@
 
 	/**
 	 * Whether this dialect have an Identity clause added to the data type or a
-	 * completely seperate identity data type
+	 * completely separate identity data type
 	 *
 	 * @return boolean
 	 */
@@ -519,7 +519,7 @@
 	}
 
 	/**
-	 * Provided we {@link #supportsInsertSelectIdentity}, then attch the
+	 * Provided we {@link #supportsInsertSelectIdentity}, then attach the
 	 * "select identity" clause to the  insert statement.
 	 *  <p/>
 	 * Note, if {@link #supportsInsertSelectIdentity} == false then
@@ -535,7 +535,7 @@
 
 	/**
 	 * Get the select command to use to retrieve the last generated IDENTITY
-	 * value for a particuar table
+	 * value for a particular table
 	 *
 	 * @param table The table into which the insert was done
 	 * @param column The PK column.
@@ -615,7 +615,7 @@
 	}
 
 	/**
-	 * Generate the appropriate select statement to to retreive the next value
+	 * Generate the appropriate select statement to to retrieve the next value
 	 * of a sequence.
 	 * <p/>
 	 * This should be a "stand alone" select statement.
@@ -629,7 +629,7 @@
 	}
 
 	/**
-	 * Generate the select expression fragment that will retreive the next
+	 * Generate the select expression fragment that will retrieve the next
 	 * value of a sequence as part of another (typically DML) statement.
 	 * <p/>
 	 * This differs from {@link #getSequenceNextValString(String)} in that this
@@ -787,7 +787,7 @@
 	}
 
 	/**
-	 * Does this dialect support bind variables (i.e., prepared statememnt
+	 * Does this dialect support bind variables (i.e., prepared statement
 	 * parameters) for its limit/offset?
 	 *
 	 * @return True if bind variables can be used; false otherwise.
@@ -862,7 +862,7 @@
 	 * Apply s limit clause to the query.
 	 * <p/>
 	 * Typically dialects utilize {@link #supportsVariableLimit() variable}
-	 * limit caluses when they support limits.  Thus, when building the
+	 * limit clauses when they support limits.  Thus, when building the
 	 * select command we do not actually need to know the limit or the offest
 	 * since we will just be using placeholders.
 	 * <p/>
@@ -880,7 +880,7 @@
 	}
 
 	/**
-	 * Hibernate APIs explcitly state that setFirstResult() should be a zero-based offset. Here we allow the
+	 * Hibernate APIs explicitly state that setFirstResult() should be a zero-based offset. Here we allow the
 	 * Dialect a chance to convert that value based on what the underlying db or driver will expect.
 	 * <p/>
 	 * NOTE: what gets passed into {@link #getLimitString(String,int,int)} is the zero-based offset.  Dialects which
@@ -1138,7 +1138,7 @@
 	// callable statement support ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
 	/**
-	 * Registers an OUT parameter which will be returing a
+	 * Registers an OUT parameter which will be returning a
 	 * {@link java.sql.ResultSet}.  How this is accomplished varies greatly
 	 * from DB to DB, hence its inclusion (along with {@link #getResultSet}) here.
 	 *
@@ -1194,7 +1194,7 @@
 	}
 
 	/**
-	 * Retrieve the command used to retrieve the current timestammp from the
+	 * Retrieve the command used to retrieve the current timestamp from the
 	 * database.
 	 *
 	 * @return The command.



More information about the hibernate-commits mailing list