You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by aw...@apache.org on 2006/09/22 20:51:24 UTC

svn commit: r449048 - /incubator/openjpa/trunk/openjpa-kernel/src/main/java/org/apache/openjpa/conf/Compatibility.java

Author: awhite
Date: Fri Sep 22 11:51:23 2006
New Revision: 449048

URL: http://svn.apache.org/viewvc?view=rev&rev=449048
Log:
Version number fixes.


Modified:
    incubator/openjpa/trunk/openjpa-kernel/src/main/java/org/apache/openjpa/conf/Compatibility.java

Modified: incubator/openjpa/trunk/openjpa-kernel/src/main/java/org/apache/openjpa/conf/Compatibility.java
URL: http://svn.apache.org/viewvc/incubator/openjpa/trunk/openjpa-kernel/src/main/java/org/apache/openjpa/conf/Compatibility.java?view=diff&rev=449048&r1=449047&r2=449048
==============================================================================
--- incubator/openjpa/trunk/openjpa-kernel/src/main/java/org/apache/openjpa/conf/Compatibility.java (original)
+++ incubator/openjpa/trunk/openjpa-kernel/src/main/java/org/apache/openjpa/conf/Compatibility.java Fri Sep 22 11:51:23 2006
@@ -46,7 +46,7 @@
 
     /**
      * Whether to interpret quoted numbers in query strings as numbers.
-     * OpenJPA versions 3.1 and prior treated them as numbers; more recent
+     * OpenJPA versions 0.3.1 and prior treated them as numbers; more recent
      * versions treat them as strings.
      */
     public boolean getQuotedNumbersInQueries() {
@@ -55,7 +55,7 @@
 
     /**
      * Whether to interpret quoted numbers in query strings as numbers.
-     * OpenJPA versions 3.1 and prior treated them as numbers; more recent
+     * OpenJPA versions 0.3.1 and prior treated them as numbers; more recent
      * versions treat them as strings.
      */
     public void setQuotedNumbersInQueries(boolean quotedNumbers) {
@@ -65,8 +65,8 @@
     /**
      * Whether to return hollow instances to broker lookups with a
      * <code>validate</code> parameter of false. OpenJPA versions prior to
-     * 4.0 did not return hollow instances without special configuration
-     * (the <code>ObjectLookupMode</code>). Beginning with 4.0, hollow
+     * 0.4.0 did not return hollow instances without special configuration
+     * (the <code>ObjectLookupMode</code>). Beginning with 0.4.0, hollow
      * objects are the default.
      */
     public boolean getValidateFalseReturnsHollow() {
@@ -76,8 +76,8 @@
     /**
      * Whether to return hollow instances to broker lookups with a
      * <code>validate</code> parameter of false. OpenJPA versions prior to
-     * 4.0 did not return hollow instances without special configuration
-     * (the <code>ObjectLookupMode</code>). Beginning with 4.0, hollow
+     * 0.4.0 did not return hollow instances without special configuration
+     * (the <code>ObjectLookupMode</code>). Beginning with 0.4.0, hollow
      * objects are the default.
      */
     public void setValidateFalseReturnsHollow(boolean hollow) {
@@ -87,7 +87,7 @@
     /**
      * Whether to check the datastore for the existence of a nontransactional
      * cached object in broker lookups with a <code>validate</code> parameter
-     * of true. OpenJPA versions prior to 4.0 checked the datastore.
+     * of true. OpenJPA versions prior to 0.4.0 checked the datastore.
      */
     public boolean getValidateTrueChecksStore() {
         return _checkStore;
@@ -96,7 +96,7 @@
     /**
      * Whether to check the datastore for the existence of a nontransactional
      * cached object in broker lookups with a <code>validate</code> parameter
-     * of true. OpenJPA versions prior to 4.0 checked the datastore.
+     * of true. OpenJPA versions prior to 0.4.0 checked the datastore.
      */
     public void setValidateTrueChecksStore(boolean check) {
         _checkStore = check;
@@ -104,7 +104,7 @@
 
     /**
      * Whether to copy identity objects before returning them to client code.
-     * Versions of OpenJPA prior to 3.0 always copied identity objects. Also,
+     * Versions of OpenJPA prior to 0.3.0 always copied identity objects. Also,
      * you should configure OpenJPA to copy identity objects if you mutate them
      * after use.
      */
@@ -114,7 +114,7 @@
 
     /**
      * Whether to copy identity objects before returning them to client code.
-     * Versions of OpenJPA prior to 3.0 always copied identity objects. Also,
+     * Versions of OpenJPA prior to 0.3.0 always copied identity objects. Also,
      * you should configure OpenJPA to copy identity objects if you mutate them
      * after use.
      */
@@ -124,7 +124,7 @@
 
     /**
      * Whether to close the broker when the managed transaction commits.
-     * Versions of OpenJPA prior to 3.0 did not close the broker.
+     * Versions of OpenJPA prior to 0.3.0 did not close the broker.
      */
     public boolean getCloseOnManagedCommit() {
         return _closeOnCommit;
@@ -132,7 +132,7 @@
 
     /**
      * Whether to close the broker when the managed transaction commits.
-     * Versions of OpenJPA prior to 3.0 did not close the broker.
+     * Versions of OpenJPA prior to 0.3.0 did not close the broker.
      */
     public void setCloseOnManagedCommit(boolean close) {
         _closeOnCommit = close;
@@ -140,7 +140,7 @@
 
     /** 
      * Whether or not to perform a version check on instances being updated
-     * in a datastore transaction. Version of OpenJPA prior to 4.1 always
+     * in a datastore transaction. Version of OpenJPA prior to 0.4.1 always
      * forced a version check.
      */
     public void setNonOptimisticVersionCheck
@@ -150,11 +150,10 @@
 
     /** 
      * Whether or not to perform a version check on instances being updated
-     * in a datastore transaction. Version of OpenJPA prior to 4.1 always
+     * in a datastore transaction. Version of OpenJPA prior to 0.4.1 always
      * forced a version check.
      */
     public boolean getNonOptimisticVersionCheck() {
         return _nonOptimisticVersionCheck;
     }
-
 }