diff options
Diffstat (limited to 'libjava/java/beans')
-rw-r--r-- | libjava/java/beans/Introspector.java | 6 | ||||
-rw-r--r-- | libjava/java/beans/PropertyEditor.java | 2 | ||||
-rw-r--r-- | libjava/java/beans/PropertyEditorManager.java | 21 | ||||
-rw-r--r-- | libjava/java/beans/beancontext/BeanContextServiceProvider.java | 8 |
4 files changed, 18 insertions, 19 deletions
diff --git a/libjava/java/beans/Introspector.java b/libjava/java/beans/Introspector.java index 078f98e..b3f67c5 100644 --- a/libjava/java/beans/Introspector.java +++ b/libjava/java/beans/Introspector.java @@ -65,7 +65,7 @@ import gnu.java.lang.ClassHelper; * When you call getBeanInfo(class c), the Introspector * first searches for BeanInfo class to see if you * provided any explicit information. It searches for a - * class named <bean class name>BeanInfo in different + * class named <bean class name>BeanInfo in different * packages, first searching the bean class's package * and then moving on to search the beanInfoSearchPath.<P> * @@ -113,14 +113,14 @@ import gnu.java.lang.ClassHelper; * type <type>. There may also be a * <CODE>public <type>[] getXXX()</CODE> and a * <CODE>public void setXXX(<type>)</CODE> - * method as well.</CODE></LI> + * method as well.</LI> * <LI>If there is a * <CODE>public void setXXX(int,<type>)</CODE> * method, then it is a write-only indexed property of * type <type>. There may also be a * <CODE>public <type>[] getXXX()</CODE> and a * <CODE>public void setXXX(<type>)</CODE> - * method as well.</CODE></LI> + * method as well.</LI> * <LI>If there is a * <CODE>public <type> getXXX()</CODE> method, * then XXX is a read-only property of type diff --git a/libjava/java/beans/PropertyEditor.java b/libjava/java/beans/PropertyEditor.java index 18b1a89..5cc3f6a 100644 --- a/libjava/java/beans/PropertyEditor.java +++ b/libjava/java/beans/PropertyEditor.java @@ -77,7 +77,7 @@ package java.beans; ** have isPaintable() return true and implement the paintValue() method. ** This method does not determine in any way how the value is edited; ** merely how it is displayed.</LI> - ** <LU>Let the caller of the PropertyEditor give the user a text input. Do + ** <LI>Let the caller of the PropertyEditor give the user a text input. Do ** this by returning a non-null String from getAsText(). If you support ** text input, you *must* support setAsText().</LI> ** <LI>Give the caller a set of possible values, such as "true"/"false", that diff --git a/libjava/java/beans/PropertyEditorManager.java b/libjava/java/beans/PropertyEditorManager.java index aa0e177..85c9ba5 100644 --- a/libjava/java/beans/PropertyEditorManager.java +++ b/libjava/java/beans/PropertyEditorManager.java @@ -60,19 +60,20 @@ import java.awt.Font; * already registered; if it is, that property editor is * used. Next it takes the type's classname and appends * "Editor" to it, and searches first in the class's - * package and then in the property editor search path.<P> + * package and then in the property editor search path. * - * Default property editors are provided for:<P> - * <OL> - * <LI>boolean, byte, short, int, long, float, and double</LI> - * <LI>java.lang.String</LI> - * <LI>java.awt.Color</LI> - * <LI>java.awt.Font</LI> - * <OL> + * <p>Default property editors are provided for:</p> + * + * <ol> + * <li>boolean, byte, short, int, long, float, and double</li> + * <li>java.lang.String</li> + * <li>java.awt.Color</li> + * <li>java.awt.Font</li> + * </ol> * - * <STRONG>Spec Suggestion:</STRONG> Perhaps an editor for + * <p><strong>Spec Suggestion:</strong> Perhaps an editor for * Filename or something like it should be provided. As well - * as char. + * as char.</p> * * @author John Keiser * @since 1.1 diff --git a/libjava/java/beans/beancontext/BeanContextServiceProvider.java b/libjava/java/beans/beancontext/BeanContextServiceProvider.java index de9c7de..cc2c935 100644 --- a/libjava/java/beans/beancontext/BeanContextServiceProvider.java +++ b/libjava/java/beans/beancontext/BeanContextServiceProvider.java @@ -62,14 +62,12 @@ import java.util.Iterator; public interface BeanContextServiceProvider { /** * Get a service. - * Called from <code>BeanContextServices.getService(). - * <P> + * Called from <code>BeanContextServices.getService()</code>. * - * If the requested service class is not available, or if this + * <p>If the requested service class is not available, or if this * <code>BeanContextServiceProvider</code> chooses not honor the * request for some reason, then this method will return - * <code>null</code>. - * <P> + * <code>null</code>.</p> * * This method may throw unchecked exceptions, so watch out. * |