Author: stliu
Date: 2010-02-28 19:30:48 -0500 (Sun, 28 Feb 2010)
New Revision: 18906
Modified:
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/bytecode/BytecodeProvider.java
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/bytecode/ClassTransformer.java
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/bytecode/ProxyFactoryFactory.java
Log:
no code change, correct typo in javadoc
Modified:
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/bytecode/BytecodeProvider.java
===================================================================
---
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/bytecode/BytecodeProvider.java 2010-02-28
22:38:56 UTC (rev 18905)
+++
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/bytecode/BytecodeProvider.java 2010-03-01
00:30:48 UTC (rev 18906)
@@ -9,8 +9,8 @@
* Bytecode requirements break down into basically 3 areas<ol>
* <li>proxy generation (both for runtime-lazy-loading and basic proxy generation)
* {@link #getProxyFactoryFactory()}
- * <li>bean relection optimization {@link #getReflectionOptimizer}
- * <li>field-access instumentation {@link #getTransformer}
+ * <li>bean reflection optimization {@link #getReflectionOptimizer}
+ * <li>field-access instrumentation {@link #getTransformer}
* </ol>
*
* @author Steve Ebersole
@@ -20,7 +20,7 @@
* Retrieve the specific factory for this provider capable of
* generating run-time proxies for lazy-loading purposes.
*
- * @return The provider specifc factory.
+ * @return The provider specific factory.
*/
public ProxyFactoryFactory getProxyFactoryFactory();
Modified:
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/bytecode/ClassTransformer.java
===================================================================
---
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/bytecode/ClassTransformer.java 2010-02-28
22:38:56 UTC (rev 18905)
+++
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/bytecode/ClassTransformer.java 2010-03-01
00:30:48 UTC (rev 18906)
@@ -19,7 +19,7 @@
/**
* Invoked when a class is being loaded or redefined to add hooks for persistence
bytecode manipulation
*
- * @param loader the defining class loaderof the class being transformed. It may be null
if using bootstrap loader
+ * @param loader the defining class loader of the class being transformed. It may be
null if using bootstrap loader
* @param classname The name of the class being transformed
* @param classBeingRedefined If an already loaded class is being redefined, then pass
this as a parameter
* @param protectionDomain ProtectionDomain of the class being (re)-defined
Modified:
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/bytecode/ProxyFactoryFactory.java
===================================================================
---
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/bytecode/ProxyFactoryFactory.java 2010-02-28
22:38:56 UTC (rev 18905)
+++
core/branches/Branch_3_2_4_SP1_CP/src/org/hibernate/bytecode/ProxyFactoryFactory.java 2010-03-01
00:30:48 UTC (rev 18906)
@@ -5,7 +5,7 @@
/**
* An interface for factories of {@link ProxyFactory proxy factory} instances.
* <p/>
- * Currently used to abstract from the tupizer whether we are using CGLIB or
+ * Currently used to abstract from the tuplizer whether we are using CGLIB or
* Javassist for lazy proxy generation.
*
* @author Steve Ebersole
Show replies by date