You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by pc...@apache.org on 2006/07/10 09:45:45 UTC

svn commit: r420455 - /incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/Value.java

Author: pcl
Date: Mon Jul 10 00:45:45 2006
New Revision: 420455

URL: http://svn.apache.org/viewvc?rev=420455&view=rev
Log:
improved docs

Modified:
    incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/Value.java

Modified: incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/Value.java
URL: http://svn.apache.org/viewvc/incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/Value.java?rev=420455&r1=420454&r2=420455&view=diff
==============================================================================
--- incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/Value.java (original)
+++ incubator/openjpa/trunk/openjpa-lib/src/main/java/org/apache/openjpa/lib/conf/Value.java Mon Jul 10 00:45:45 2006
@@ -207,7 +207,10 @@
 
     /**
      * The name of the getter method for the instantiated value of this
-     * property(as opposed to the string value)
+     * property(as opposed to the string value). If the string starts with
+     * <code>this.</code>, then the getter will be looked up on the value
+     * instance itself. Otherwise, the getter will be looked up on the 
+     * configuration instance. 
      */
     public void setInstantiatingGetter(String getter) {
         this.getter = getter;