[hibernate-commits] Hibernate SVN: r19909 - core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/persister/entity.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Wed Jul 7 12:39:36 EDT 2010


Author: stliu
Date: 2010-07-07 12:39:35 -0400 (Wed, 07 Jul 2010)
New Revision: 19909

Modified:
   core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/persister/entity/EntityPersister.java
Log:
typo in javadoc

Modified: core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/persister/entity/EntityPersister.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/persister/entity/EntityPersister.java	2010-07-07 14:05:01 UTC (rev 19908)
+++ core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/persister/entity/EntityPersister.java	2010-07-07 16:39:35 UTC (rev 19909)
@@ -67,7 +67,7 @@
 	 * Called only once per {@link org.hibernate.SessionFactory} lifecycle,
 	 * after all entity persisters have been instantiated.
 	 *
-	 * @throws org.hibernate.MappingException Indicates an issue in the metdata.
+	 * @throws org.hibernate.MappingException Indicates an issue in the metadata.
 	 */
 	public void postInstantiate() throws MappingException;
 
@@ -171,7 +171,7 @@
 	/**
 	 * Determine whether this entity has any non-none cascading.
 	 *
-	 * @return True if the entity has any properties with a cscade other than NONE;
+	 * @return True if the entity has any properties with a cascade other than NONE;
 	 * false otherwise (aka, no cascading).
 	 */
 	public boolean hasCascades();
@@ -204,7 +204,7 @@
 	 * Get the type of a particular property by name.
 	 *
 	 * @param propertyName The name of the property for which to retrieve
-	 * the typpe.
+	 * the type.
 	 * @return The type.
 	 * @throws org.hibernate.MappingException Typically indicates an unknown
 	 * property name.
@@ -244,10 +244,10 @@
 	public boolean hasIdentifierProperty();
 
 	/**
-	 * Determine whether detahced instances of this entity carry their own
+	 * Determine whether detached instances of this entity carry their own
 	 * identifier value.
 	 * <p/>
-	 * The other option is the deperecated feature where users could supply
+	 * The other option is the deprecated feature where users could supply
 	 * the id during session calls.
 	 *
 	 * @return True if either (1) {@link #hasIdentifierProperty()} or
@@ -299,7 +299,7 @@
 	/**
 	 * Retrieve the current state of the natural-id properties from the database.
 	 *
-	 * @param id The identifier of the entity for which to retrieve the naturak-id values.
+	 * @param id The identifier of the entity for which to retrieve the natural-id values.
 	 * @param session The session from which the request originated.
 	 * @return The natural-id snapshot.
 	 */
@@ -417,7 +417,7 @@
 	public boolean[] getPropertyVersionability();
 	public boolean[] getPropertyLaziness();
 	/**
-	 * Get the cascade styles of the propertes (optional operation)
+	 * Get the cascade styles of the properties (optional operation)
 	 */
 	public CascadeStyle[] getPropertyCascadeStyles();
 
@@ -687,7 +687,7 @@
 	 * <tt>Animal</tt> persister is being asked to return the persister specific to <tt>Cat</tt>.
 	 * <p/>
 	 * It is also possible that the instance is actually an <tt>Animal</tt> instance in the above example in which
-	 * case we would retrn <tt>this</tt> from this method.
+	 * case we would return <tt>this</tt> from this method.
 	 *
 	 * @param instance The entity instance
 	 * @param factory Reference to the SessionFactory



More information about the hibernate-commits mailing list