jdk/src/share/classes/java/beans/PropertyDescriptor.java
changeset 25130 adfaa02ea516
parent 25123 1f70b30da563
child 25566 ba387c302edd
--- a/jdk/src/share/classes/java/beans/PropertyDescriptor.java	Wed Jun 04 17:24:13 2014 +0400
+++ b/jdk/src/share/classes/java/beans/PropertyDescriptor.java	Thu Jun 05 10:37:24 2014 -0700
@@ -32,6 +32,7 @@
 /**
  * A PropertyDescriptor describes one property that a Java Bean
  * exports via a pair of accessor methods.
+ * @since 1.1
  */
 public class PropertyDescriptor extends FeatureDescriptor {
 
@@ -244,6 +245,7 @@
      *
      * @param readMethod The new read method.
      * @throws IntrospectionException if the read method is invalid
+     * @since 1.2
      */
     public synchronized void setReadMethod(Method readMethod)
                                 throws IntrospectionException {
@@ -314,6 +316,7 @@
      *
      * @param writeMethod The new write method.
      * @throws IntrospectionException if the write method is invalid
+     * @since 1.2
      */
     public synchronized void setWriteMethod(Method writeMethod)
                                 throws IntrospectionException {