summaryrefslogtreecommitdiff
path: root/libjava/java/beans
diff options
context:
space:
mode:
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-17 08:17:20 +0000
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>2004-11-17 08:17:20 +0000
commit973ff22ddc2ceef9d9c7cb02f0edf891d86ffb27 (patch)
tree463d4d85dafbbb1b2f3d8b5b1dbaf7d9eb76fd30 /libjava/java/beans
parentc41d6a64a1a8eca52552768fa08c978ef880313f (diff)
downloadgcc-973ff22ddc2ceef9d9c7cb02f0edf891d86ffb27.tar.gz
2004-11-17 Michael Koch <konqueror@gmx.de>
* java/beans/Beans.java, java/beans/PropertyChangeEvent.java, java/beans/PropertyEditorSupport.java: Fixed javadocs. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90799 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/beans')
-rw-r--r--libjava/java/beans/Beans.java2
-rw-r--r--libjava/java/beans/PropertyChangeEvent.java4
-rw-r--r--libjava/java/beans/PropertyEditorSupport.java4
3 files changed, 5 insertions, 5 deletions
diff --git a/libjava/java/beans/Beans.java b/libjava/java/beans/Beans.java
index 96813d30b0d..762e4d597ca 100644
--- a/libjava/java/beans/Beans.java
+++ b/libjava/java/beans/Beans.java
@@ -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.
diff --git a/libjava/java/beans/PropertyChangeEvent.java b/libjava/java/beans/PropertyChangeEvent.java
index 83ca681ce13..418f92f8bb8 100644
--- a/libjava/java/beans/PropertyChangeEvent.java
+++ b/libjava/java/beans/PropertyChangeEvent.java
@@ -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,
diff --git a/libjava/java/beans/PropertyEditorSupport.java b/libjava/java/beans/PropertyEditorSupport.java
index 218cf63c804..2ea9aaa4f0b 100644
--- a/libjava/java/beans/PropertyEditorSupport.java
+++ b/libjava/java/beans/PropertyEditorSupport.java
@@ -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)
{