[hibernate-commits] Hibernate SVN: r18332 - core/trunk/core/src/main/java/org/hibernate/persister/entity.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Dec 28 04:18:56 EST 2009


Author: stliu
Date: 2009-12-28 04:18:55 -0500 (Mon, 28 Dec 2009)
New Revision: 18332

Modified:
   core/trunk/core/src/main/java/org/hibernate/persister/entity/EntityPersister.java
Log:
minor change, correct javadoc spell

Modified: core/trunk/core/src/main/java/org/hibernate/persister/entity/EntityPersister.java
===================================================================
--- core/trunk/core/src/main/java/org/hibernate/persister/entity/EntityPersister.java	2009-12-24 14:09:27 UTC (rev 18331)
+++ core/trunk/core/src/main/java/org/hibernate/persister/entity/EntityPersister.java	2009-12-28 09:18:55 UTC (rev 18332)
@@ -68,7 +68,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;
 
@@ -172,7 +172,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();
@@ -205,7 +205,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.
@@ -245,10 +245,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
@@ -300,7 +300,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.
 	 */
@@ -430,7 +430,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();
 
@@ -700,7 +700,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