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

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Jul 12 06:00:13 EDT 2010


Author: stliu
Date: 2010-07-12 06:00:13 -0400 (Mon, 12 Jul 2010)
New Revision: 19938

Modified:
   core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/proxy/LazyInitializer.java
Log:
typo in javadoc

Modified: core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/proxy/LazyInitializer.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/proxy/LazyInitializer.java	2010-07-12 08:25:31 UTC (rev 19937)
+++ core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/proxy/LazyInitializer.java	2010-07-12 10:00:13 UTC (rev 19938)
@@ -44,14 +44,14 @@
 	public void initialize() throws HibernateException;
 
 	/**
-	 * Retrieve the identifier value for the enity our owning proxy represents.
+	 * Retrieve the identifier value for the entity our owning proxy represents.
 	 *
 	 * @return The identifier value.
 	 */
 	public Serializable getIdentifier();
 
 	/**
-	 * Set the identifier value for the enity our owning proxy represents.
+	 * Set the identifier value for the entity our owning proxy represents.
 	 *
 	 * @param id The identifier value.
 	 */
@@ -72,7 +72,7 @@
 	public Class getPersistentClass();
 
 	/**
-	 * Is the proxy uninitialzed?
+	 * Is the proxy uninitialized?
 	 *
 	 * @return True if uninitialized; false otherwise.
 	 */
@@ -115,9 +115,9 @@
 	 * Associate the proxy with the given session.
 	 * <p/>
 	 * Care should be given to make certain that the proxy is added to the session's persistence context as well
-	 * to maintain the symetry of the association.  That must be done seperately as this method simply sets an
+	 * to maintain the symmetry of the association.  That must be done separately as this method simply sets an
 	 * internal reference.  We do also check that if there is already an associated session that the proxy
-	 * reference was removed from that previous session's persistence contet.
+	 * reference was removed from that previous session's persistence context.
 	 *
 	 * @param session The session
 	 * @throws HibernateException Indicates that the proxy was still contained in the persistence context of the



More information about the hibernate-commits mailing list