You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by aa...@apache.org on 2006/08/08 04:25:09 UTC

svn commit: r429542 - /incubator/cayenne/main/trunk/core/cayenne-jdk1.4-core/src/main/java/org/apache/cayenne/wocompat/EOObjAttribute.java

Author: aadamchik
Date: Mon Aug  7 19:25:09 2006
New Revision: 429542

URL: http://svn.apache.org/viewvc?rev=429542&view=rev
Log:
CAY-623 - adding missing deprecated method

Modified:
    incubator/cayenne/main/trunk/core/cayenne-jdk1.4-core/src/main/java/org/apache/cayenne/wocompat/EOObjAttribute.java

Modified: incubator/cayenne/main/trunk/core/cayenne-jdk1.4-core/src/main/java/org/apache/cayenne/wocompat/EOObjAttribute.java
URL: http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/core/cayenne-jdk1.4-core/src/main/java/org/apache/cayenne/wocompat/EOObjAttribute.java?rev=429542&r1=429541&r2=429542&view=diff
==============================================================================
--- incubator/cayenne/main/trunk/core/cayenne-jdk1.4-core/src/main/java/org/apache/cayenne/wocompat/EOObjAttribute.java (original)
+++ incubator/cayenne/main/trunk/core/cayenne-jdk1.4-core/src/main/java/org/apache/cayenne/wocompat/EOObjAttribute.java Mon Aug  7 19:25:09 2006
@@ -42,6 +42,13 @@
         super(name, type, parent);
     }
 
+    /**
+     * @deprecated since 2.0 use isReadOnly().
+     */
+    public boolean getReadOnly() {
+        return isReadOnly();
+    }
+
     public boolean isReadOnly() {
         return readOnly;
     }