Commit 866212e7 by Michael Koch Committed by Michael Koch

Beans.java, [...]: Fixed javadocs.

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
parent 2cc07ffc
2004-11-17 Michael Koch <konqueror@gmx.de> 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. * java/util/Timer.java (DEFAULT_SIZE): Made static.
2004-11-17 Michael Koch <konqueror@gmx.de> 2004-11-17 Michael Koch <konqueror@gmx.de>
......
...@@ -204,7 +204,7 @@ public class Beans ...@@ -204,7 +204,7 @@ public class Beans
* Objects. * Objects.
* *
* @param bean the Bean to cast. * @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 * @return whether the Bean can be cast to the class type
* in question. * in question.
......
...@@ -105,8 +105,8 @@ public class PropertyChangeEvent extends EventObject ...@@ -105,8 +105,8 @@ public class PropertyChangeEvent extends EventObject
* *
* @param source the Bean containing the property * @param source the Bean containing the property
* @param propertyName the property's name * @param propertyName the property's name
* @param oldValue the old value of the property * @param oldVal the old value of the property
* @param newValue the new value of the property * @param newVal the new value of the property
* @throws IllegalArgumentException if source is null * @throws IllegalArgumentException if source is null
*/ */
public PropertyChangeEvent(Object source, String propertyName, public PropertyChangeEvent(Object source, String propertyName,
......
...@@ -68,7 +68,7 @@ public class PropertyEditorSupport implements PropertyEditor ...@@ -68,7 +68,7 @@ public class PropertyEditorSupport implements PropertyEditor
* instance itself. * instance itself.
* *
* @since 1.5 * @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() public PropertyEditorSupport()
{ {
...@@ -85,7 +85,7 @@ public class PropertyEditorSupport implements PropertyEditor ...@@ -85,7 +85,7 @@ public class PropertyEditorSupport implements PropertyEditor
* @param source The source to use when firing * @param source The source to use when firing
* property change events. * property change events.
* @since 1.5 * @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) public PropertyEditorSupport(Object source)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment