Author: aadamchik
Date: Fri Sep 22 11:10:45 2006
New Revision: 449029

URL: http://svn.apache.org/viewvc?view=rev&rev=449029
Log:
javadocs

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

Modified: 
incubator/cayenne/main/trunk/core/cayenne-jdk1.4/src/main/java/org/apache/cayenne/property/ClassDescriptor.java
URL: 
http://svn.apache.org/viewvc/incubator/cayenne/main/trunk/core/cayenne-jdk1.4/src/main/java/org/apache/cayenne/property/ClassDescriptor.java?view=diff&rev=449029&r1=449028&r2=449029
==============================================================================
--- 
incubator/cayenne/main/trunk/core/cayenne-jdk1.4/src/main/java/org/apache/cayenne/property/ClassDescriptor.java
 (original)
+++ 
incubator/cayenne/main/trunk/core/cayenne-jdk1.4/src/main/java/org/apache/cayenne/property/ClassDescriptor.java
 Fri Sep 22 11:10:45 2006
@@ -22,8 +22,7 @@
 import java.util.Iterator;
 
 /**
- * Provides access to a set of persistent properties of a Java Bean and 
methods for
- * manipulating such bean.
+ * A runtime descriptor of an persistent class.
  * 
  * @since 1.2
  * @author Andrus Adamchik
@@ -31,7 +30,7 @@
 public interface ClassDescriptor {
 
     /**
-     * Returns a bean class mapped by this descriptor.
+     * Returns a class mapped by this descriptor.
      */
     Class getObjectClass();
 
@@ -69,10 +68,10 @@
     void shallowMerge(Object from, Object to) throws PropertyAccessException;
 
     /**
-     * Returns a Java Bean property descriptor matching property name or null 
if no such
-     * property is found. Lookup includes properties from this descriptor and 
all its
-     * superclass decsriptors. Returned property maybe any one of simple, 
value holder or
-     * collection properties.
+     * Returns a property descriptor matching property name, or null if no 
such property
+     * is found. Lookup includes properties from this descriptor and all its 
superclass
+     * decsriptors. Returned property maybe any one of simple, value holder or 
collection
+     * properties.
      */
     Property getProperty(String propertyName);
 


Reply via email to