[hibernate-commits] Hibernate SVN: r18846 - in core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate: tuple/entity and 1 other directories.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Sat Feb 20 02:44:20 EST 2010


Author: stliu
Date: 2010-02-20 02:44:19 -0500 (Sat, 20 Feb 2010)
New Revision: 18846

Modified:
   core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/mapping/PersistentClass.java
   core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/tuple/entity/EntityTuplizer.java
   core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/util/NamingHelper.java
   core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/util/SoftLimitMRUCache.java
Log:
no actually code change, just correct javadocs typo

Modified: core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/mapping/PersistentClass.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/mapping/PersistentClass.java	2010-02-20 06:30:08 UTC (rev 18845)
+++ core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/mapping/PersistentClass.java	2010-02-20 07:44:19 UTC (rev 18846)
@@ -335,7 +335,7 @@
 	}
 
 	/**
-	 * Build an iterator of properties which are "referenceable".
+	 * Build an iterator of properties which are "referencable".
 	 *
 	 * @see #getReferencedProperty for a discussion of "referenceable"
 	 * @return The property iterator.
@@ -345,10 +345,10 @@
 	}
 
 	/**
-	 * Given a property path, locate the appropriate referenceable property reference.
+	 * Given a property path, locate the appropriate referencable property reference.
 	 * <p/>
-	 * A referenceable property is a property  which can be a target of a foreign-key
-	 * mapping (an identifier or explcitly named in a property-ref).
+	 * A referencable property is a property  which can be a target of a foreign-key
+	 * mapping (an identifier or explicitly named in a property-ref).
 	 *
 	 * @param propertyPath The property path to resolve into a property reference.
 	 * @return The property reference (never null).

Modified: core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/tuple/entity/EntityTuplizer.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/tuple/entity/EntityTuplizer.java	2010-02-20 06:30:08 UTC (rev 18845)
+++ core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/tuple/entity/EntityTuplizer.java	2010-02-20 07:44:19 UTC (rev 18846)
@@ -35,7 +35,7 @@
 import org.hibernate.engine.SessionFactoryImplementor;
 
 /**
- * Defines further responsibilities reagarding tuplization based on
+ * Defines further responsibilities regarding tuplization based on
  * a mapped entity.
  * <p/>
  * EntityTuplizer implementations should have the following constructor signature:

Modified: core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/util/NamingHelper.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/util/NamingHelper.java	2010-02-20 06:30:08 UTC (rev 18845)
+++ core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/util/NamingHelper.java	2010-02-20 07:44:19 UTC (rev 18846)
@@ -101,7 +101,7 @@
 
 	/**
 	 * Transform JNDI properties passed in the form <tt>hibernate.jndi.*</tt> to the
-	 * format accepted by <tt>InitialContext</tt> by triming the leading "<tt>hibernate.jndi</tt>".
+	 * format accepted by <tt>InitialContext</tt> by trimming the leading "<tt>hibernate.jndi</tt>".
 	 */
 	public static Properties getJndiProperties(Properties properties) {
 

Modified: core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/util/SoftLimitMRUCache.java
===================================================================
--- core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/util/SoftLimitMRUCache.java	2010-02-20 06:30:08 UTC (rev 18845)
+++ core/branches/Branch_3_3_2_GA_CP/core/src/main/java/org/hibernate/util/SoftLimitMRUCache.java	2010-02-20 07:44:19 UTC (rev 18846)
@@ -54,7 +54,7 @@
 
 	// actual cache of the entries.  soft references are used for both the keys and the
 	// values here since the values pertaining to the MRU entries are kept in a
-	// seperate hard reference cache (to avoid their enqueuement/garbage-collection).
+	// separate hard reference cache (to avoid their enqueuement/garbage-collection).
 	private transient ReferenceMap softReferenceCache = new ReferenceMap( ReferenceMap.SOFT, ReferenceMap.SOFT );
 	// the MRU cache used to keep hard references to the most recently used query plans;
 	// note : LRU here is a bit of a misnomer, it indicates that LRU entries are removed, the



More information about the hibernate-commits mailing list