You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by mg...@apache.org on 2008/03/02 17:05:55 UTC

svn commit: r632777 - /cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/access/types/ExtendedEnumeration.java

Author: mgentry
Date: Sun Mar  2 08:05:54 2008
New Revision: 632777

URL: http://svn.apache.org/viewvc?rev=632777&view=rev
Log:
Changed comment.

Modified:
    cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/access/types/ExtendedEnumeration.java

Modified: cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/access/types/ExtendedEnumeration.java
URL: http://svn.apache.org/viewvc/cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/access/types/ExtendedEnumeration.java?rev=632777&r1=632776&r2=632777&view=diff
==============================================================================
--- cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/access/types/ExtendedEnumeration.java (original)
+++ cayenne/main/trunk/framework/cayenne-jdk1.5-unpublished/src/main/java/org/apache/cayenne/access/types/ExtendedEnumeration.java Sun Mar  2 08:05:54 2008
@@ -2,7 +2,9 @@
 
 public interface ExtendedEnumeration
 {
-    // Return the value to be stored in the database for this enumeration.  In
-    // actuallity, this should be an Integer or a String.
+    /**
+     * Return the value to be stored in the database for this enumeration.  In
+     * actuality, this should be an Integer or a String.
+     */
     public Object getDatabaseValue();
 }