]> gcc.gnu.org Git - gcc.git/commitdiff
Beans.java, [...]: Fixed javadocs.
authorMichael Koch <konqueror@gmx.de>
Wed, 17 Nov 2004 08:17:20 +0000 (08:17 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Wed, 17 Nov 2004 08:17:20 +0000 (08:17 +0000)
2004-11-17  Michael Koch  <konqueror@gmx.de>

* java/beans/Beans.java,
java/beans/PropertyChangeEvent.java,
java/beans/PropertyEditorSupport.java:
Fixed javadocs.

From-SVN: r90799

libjava/ChangeLog
libjava/java/beans/Beans.java
libjava/java/beans/PropertyChangeEvent.java
libjava/java/beans/PropertyEditorSupport.java

index 1dadd6e0a9fa522f17130f623e4a9fdfdda88019..8477cd253a2fa51e43f38ecf3f9e7a0c759bd1ff 100644 (file)
@@ -1,3 +1,10 @@
+2004-11-17  Michael Koch  <konqueror@gmx.de>
+
+       * java/beans/Beans.java,
+       java/beans/PropertyChangeEvent.java,
+       java/beans/PropertyEditorSupport.java:
+       Fixed javadocs.
+
 2004-11-17  Michael Koch  <konqueror@gmx.de>
 
        * java/util/Timer.java (DEFAULT_SIZE): Made static.
index 96813d30b0d150ef85ec8638943cc3c8a8b94700..762e4d597cab4bea013145245390122509e42729 100644 (file)
@@ -204,7 +204,7 @@ public class Beans
    * Objects.
    *
    * @param bean the Bean to cast.
-   * @param newClass the Class to cast it to.
+   * @param newBeanClass the Class to cast it to.
    *
    * @return whether the Bean can be cast to the class type
    *         in question.
index 83ca681ce13263dad76e7d2ca91dd1ff52af6675..418f92f8bb8890784b2f2e6696ee2eed6790d24e 100644 (file)
@@ -105,8 +105,8 @@ public class PropertyChangeEvent extends EventObject
    *
    * @param source the Bean containing the property
    * @param propertyName the property's name
-   * @param oldValue the old value of the property
-   * @param newValue the new value of the property
+   * @param oldVal the old value of the property
+   * @param newVal the new value of the property
    * @throws IllegalArgumentException if source is null
    */
   public PropertyChangeEvent(Object source, String propertyName,
index 218cf63c80407db91ba89fc775f3669fd514e7a2..2ea9aaa4f0b4e613a5c352fabde31db273360518 100644 (file)
@@ -68,7 +68,7 @@ public class PropertyEditorSupport implements PropertyEditor
    * instance itself.
    *
    * @since 1.5
-   * @status this was <code>protected</code> prior to 1.5
+   * @specnote this was <code>protected</code> prior to 1.5
    */
   public PropertyEditorSupport()
   {
@@ -85,7 +85,7 @@ public class PropertyEditorSupport implements PropertyEditor
    * @param source The source to use when firing
    * property change events.
    * @since 1.5
-   * @status this was <code>protected</code> prior to 1.5
+   * @specnote this was <code>protected</code> prior to 1.5
    */
   public PropertyEditorSupport(Object source)
   {
This page took 0.077454 seconds and 5 git commands to generate.