From 98126afc3db0ccfc669fbd009f0d021760e1e41a Mon Sep 17 00:00:00 2001 From: Joe Darcy Date: Tue, 14 Jun 2011 12:31:31 -0700 Subject: [PATCH] 7054669: javadoc warnings from java.awt.Toolkit Reviewed-by: anthony --- jdk/src/share/classes/java/awt/Toolkit.java | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/jdk/src/share/classes/java/awt/Toolkit.java b/jdk/src/share/classes/java/awt/Toolkit.java index 3ac2714dcef..cda980c27f4 100644 --- a/jdk/src/share/classes/java/awt/Toolkit.java +++ b/jdk/src/share/classes/java/awt/Toolkit.java @@ -1856,9 +1856,11 @@ public abstract class Toolkit { } /** - * Adds the specified property change listener for the named desktop - * property. When a {@link PropertyChangeListenerProxy} object is added, - * its property name is ignored, and the wrapped listener is added. + * Adds the specified property change listener for the named + * desktop property. When a {@link + * java.beans.PropertyChangeListenerProxy + * PropertyChangeListenerProxy} object is added, its property name + * is ignored, and the wrapped listener is added. * If {@code name} is {@code null} or {@code pcl} is {@code null}, * no exception is thrown and no action is performed. * @@ -1874,9 +1876,10 @@ public abstract class Toolkit { /** * Removes the specified property change listener for the named - * desktop property. When a {@link PropertyChangeListenerProxy} object - * is removed, its property name is ignored, and - * the wrapped listener is removed. + * desktop property. When a {@link + * java.beans.PropertyChangeListenerProxy + * PropertyChangeListenerProxy} object is removed, its property + * name is ignored, and the wrapped listener is removed. * If {@code name} is {@code null} or {@code pcl} is {@code null}, * no exception is thrown and no action is performed. * @@ -1896,7 +1899,7 @@ public abstract class Toolkit { * contains {@code PropertyChangeListenerProxy} objects * that associate listeners with the names of desktop properties. * - * @return all of this toolkit's {@ code PropertyChangeListener} + * @return all of this toolkit's {@code PropertyChangeListener} * objects wrapped in {@code PropertyChangeListenerProxy} objects * or an empty array if no listeners are added *