Commit 7431acbe by Michael Koch Committed by Michael Koch

AWTPermission.java, [...]: Fixed HTML tags in javadocs all over.

2004-04-20  Michael Koch  <konqueror@gmx.de>

	* java/awt/AWTPermission.java,
	java/awt/Component.java,
	java/awt/ComponentOrientation.java,,
	java/awt/Dialog.java,
	java/awt/FontMetrics.java,
	java/awt/Graphics.java,
	java/awt/datatransfer/DataFlavor.java,
	java/beans/Introspector.java,
	java/beans/PropertyEditor.java,
	java/beans/PropertyEditorManager.java,
	java/beans/beancontext/BeanContextServiceProvider.java:
	Fixed HTML tags in javadocs all over.

From-SVN: r80890
parent 7f6f517f
2004-04-20 Michael Koch <konqueror@gmx.de>
* java/awt/AWTPermission.java,
java/awt/Component.java,
java/awt/ComponentOrientation.java,,
java/awt/Dialog.java,
java/awt/FontMetrics.java,
java/awt/Graphics.java,
java/awt/datatransfer/DataFlavor.java,
java/beans/Introspector.java,
java/beans/PropertyEditor.java,
java/beans/PropertyEditorManager.java,
java/beans/beancontext/BeanContextServiceProvider.java:
Fixed HTML tags in javadocs all over.
2004-04-20 Mark Wielaard <mark@klomp.org> 2004-04-20 Mark Wielaard <mark@klomp.org>
* gnu/java/awt/peer/gtk/GtkFontPeer.java: Use fallback when * gnu/java/awt/peer/gtk/GtkFontPeer.java: Use fallback when
......
...@@ -79,7 +79,7 @@ import java.security.BasicPermission; ...@@ -79,7 +79,7 @@ import java.security.BasicPermission;
* <tr> * <tr>
* <td><code>fullScreenExclusive</code></td> * <td><code>fullScreenExclusive</code></td>
* <td>enter full-screen exclusive mode</td> * <td>enter full-screen exclusive mode</td>
* <td>malicious code could masquerade as a trusted program</td><tr> * <td>malicious code could masquerade as a trusted program</td></tr>
* </table> * </table>
* *
* @author Tom Tromey <tromey@redhat.com> * @author Tom Tromey <tromey@redhat.com>
......
...@@ -105,7 +105,7 @@ import javax.accessibility.AccessibleStateSet; ...@@ -105,7 +105,7 @@ import javax.accessibility.AccessibleStateSet;
* in inner classes, rather than using this object itself as the listener, if * in inner classes, rather than using this object itself as the listener, if
* external objects do not need to save the state of this object. * external objects do not need to save the state of this object.
* *
* <p><pre> * <pre>
* import java.awt.*; * import java.awt.*;
* import java.awt.event.*; * import java.awt.event.*;
* import java.io.Serializable; * import java.io.Serializable;
...@@ -127,6 +127,7 @@ import javax.accessibility.AccessibleStateSet; ...@@ -127,6 +127,7 @@ import javax.accessibility.AccessibleStateSet;
* aButton.addActionListener(new MyActionListener()); * aButton.addActionListener(new MyActionListener());
* } * }
* } * }
* </pre>
* *
* <p>Status: Incomplete. The event dispatch mechanism is implemented. All * <p>Status: Incomplete. The event dispatch mechanism is implemented. All
* other methods defined in the J2SE 1.3 API javadoc exist, but are mostly * other methods defined in the J2SE 1.3 API javadoc exist, but are mostly
......
...@@ -171,13 +171,15 @@ public final class ComponentOrientation implements Serializable ...@@ -171,13 +171,15 @@ public final class ComponentOrientation implements Serializable
} }
/** /**
* Gets an orientation from a resource bundle. This tries the following:<ol> * Gets an orientation from a resource bundle. This tries the following:
*
* <ul>
* <li>Use the key "Orientation" to find an instance of ComponentOrientation * <li>Use the key "Orientation" to find an instance of ComponentOrientation
* in the bundle.</li> * in the bundle.</li>
* <li>Get the locale of the resource bundle, and get the orientation of * <li>Get the locale of the resource bundle, and get the orientation of
* that locale.</li> * that locale.</li>
* <li>Give up and get the orientation of the default locale.<li> * <li>Give up and get the orientation of the default locale.</li>
* <ol> * </ul>
* *
* @param bdl the bundle to use * @param bdl the bundle to use
* @return the orientation * @return the orientation
......
...@@ -123,8 +123,8 @@ Dialog(Frame parent) ...@@ -123,8 +123,8 @@ Dialog(Frame parent)
* parent and modality, that is resizable and which has no title. * parent and modality, that is resizable and which has no title.
* *
* @param parent The parent frame of this dialog box. * @param parent The parent frame of this dialog box.
* @param modal <true> if this dialog box is modal, <code>false</code> * @param modal <code>true</code> if this dialog box is modal,
* otherwise. * <code>false</code> otherwise.
* *
* @exception IllegalArgumentException If the owner's GraphicsConfiguration * @exception IllegalArgumentException If the owner's GraphicsConfiguration
* is not from a screen device, or if owner is null. This exception is always * is not from a screen device, or if owner is null. This exception is always
...@@ -164,8 +164,8 @@ Dialog(Frame parent, String title) ...@@ -164,8 +164,8 @@ Dialog(Frame parent, String title)
* *
* @param parent The parent frame of this dialog box. * @param parent The parent frame of this dialog box.
* @param title The title string for this dialog box. * @param title The title string for this dialog box.
* @param modal <true> if this dialog box is modal, <code>false</code> * @param modal <code>true</code> if this dialog box is modal,
* otherwise. * <code>false</code> otherwise.
* *
* @exception IllegalArgumentException If owner is null or * @exception IllegalArgumentException If owner is null or
* GraphicsEnvironment.isHeadless() returns true. * GraphicsEnvironment.isHeadless() returns true.
...@@ -183,8 +183,8 @@ Dialog(Frame parent, String title, boolean modal) ...@@ -183,8 +183,8 @@ Dialog(Frame parent, String title, boolean modal)
* *
* @param parent The parent frame of this dialog box. * @param parent The parent frame of this dialog box.
* @param title The title string for this dialog box. * @param title The title string for this dialog box.
* @param modal <true> if this dialog box is modal, <code>false</code> * @param modal <code>true</code> if this dialog box is modal,
* otherwise. * <code>false</code> otherwise.
* @param gc The <code>GraphicsConfiguration</code> object to use. * @param gc The <code>GraphicsConfiguration</code> object to use.
* *
* @exception IllegalArgumentException If owner is null, the * @exception IllegalArgumentException If owner is null, the
......
...@@ -47,12 +47,12 @@ package java.awt; ...@@ -47,12 +47,12 @@ package java.awt;
* least the following methods: * least the following methods:
* <p> * <p>
* <ul> * <ul>
* <li>getAscent * <li>getAscent()</li>
* <li>getDescent * <li>getDescent()</li>
* <li>getLeading() * <li>getLeading()</li>
* <li>getMaxAdvance() * <li>getMaxAdvance()</li>
* <li>charWidth(char) * <li>charWidth(char)</li>
* <li>charsWidth(char[], int, int) * <li>charsWidth(char[], int, int)</li>
* </ul> * </ul>
* *
* @author Aaron M. Renn (arenn@urbanophile.com) * @author Aaron M. Renn (arenn@urbanophile.com)
......
/* Graphics.java -- Abstract Java drawing class /* Graphics.java -- Abstract Java drawing class
Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc. Copyright (C) 1999, 2000, 2002, 2004 Free Software Foundation, Inc.
This file is part of GNU Classpath. This file is part of GNU Classpath.
......
...@@ -270,7 +270,7 @@ DataFlavor(Class representationClass, String humanPresentableName) ...@@ -270,7 +270,7 @@ DataFlavor(Class representationClass, String humanPresentableName)
/** /**
* Initializes a new instance of <code>DataFlavor</code> with the * Initializes a new instance of <code>DataFlavor</code> with the
* specified MIME type and description. If the MIME type has a * specified MIME type and description. If the MIME type has a
* "class=<rep class>" parameter then the representation class will * "class=&lt;rep class&gt;" parameter then the representation class will
* be the class name specified. Otherwise the class defaults to * be the class name specified. Otherwise the class defaults to
* <code>java.io.InputStream</code>. If the human readable name * <code>java.io.InputStream</code>. If the human readable name
* is not specified (<code>null</code>) then the human readable name * is not specified (<code>null</code>) then the human readable name
...@@ -319,7 +319,7 @@ getRepresentationClassFromMime(String mimeString, ClassLoader classLoader) ...@@ -319,7 +319,7 @@ getRepresentationClassFromMime(String mimeString, ClassLoader classLoader)
/** /**
* Initializes a new instance of <code>DataFlavor</code> with the * Initializes a new instance of <code>DataFlavor</code> with the
* specified MIME type and description. If the MIME type has a * specified MIME type and description. If the MIME type has a
* "class=<rep class>" parameter then the representation class will * "class=&lt;rep class&gt;" parameter then the representation class will
* be the class name specified. Otherwise the class defaults to * be the class name specified. Otherwise the class defaults to
* <code>java.io.InputStream</code>. If the human readable name * <code>java.io.InputStream</code>. If the human readable name
* is not specified (<code>null</code>) then the human readable name * is not specified (<code>null</code>) then the human readable name
...@@ -709,10 +709,10 @@ equals(DataFlavor flavor) ...@@ -709,10 +709,10 @@ equals(DataFlavor flavor)
* are met: * are met:
* <p> * <p>
* <ul> * <ul>
* <li>The object is not <code>null</code>. * <li>The object is not <code>null</code>.</li>
* <li>The object is an instance of <code>DataFlavor</code>. * <li>The object is an instance of <code>DataFlavor</code>.</li>
* <li>The object's MIME type and representation class are equal to * <li>The object's MIME type and representation class are equal to
* this object's. * this object's.</li>
* </ul> * </ul>
* *
* @param obj The <code>Object</code> to test against. * @param obj The <code>Object</code> to test against.
......
...@@ -65,7 +65,7 @@ import gnu.java.lang.ClassHelper; ...@@ -65,7 +65,7 @@ import gnu.java.lang.ClassHelper;
* When you call getBeanInfo(class c), the Introspector * When you call getBeanInfo(class c), the Introspector
* first searches for BeanInfo class to see if you * first searches for BeanInfo class to see if you
* provided any explicit information. It searches for a * provided any explicit information. It searches for a
* class named <bean class name>BeanInfo in different * class named &lt;bean class name&gt;BeanInfo in different
* packages, first searching the bean class's package * packages, first searching the bean class's package
* and then moving on to search the beanInfoSearchPath.<P> * and then moving on to search the beanInfoSearchPath.<P>
* *
...@@ -113,14 +113,14 @@ import gnu.java.lang.ClassHelper; ...@@ -113,14 +113,14 @@ import gnu.java.lang.ClassHelper;
* type &lt;type&gt;. There may also be a * type &lt;type&gt;. There may also be a
* <CODE>public &lt;type&gt;[] getXXX()</CODE> and a * <CODE>public &lt;type&gt;[] getXXX()</CODE> and a
* <CODE>public void setXXX(&lt;type&gt;)</CODE> * <CODE>public void setXXX(&lt;type&gt;)</CODE>
* method as well.</CODE></LI> * method as well.</LI>
* <LI>If there is a * <LI>If there is a
* <CODE>public void setXXX(int,&lt;type&gt;)</CODE> * <CODE>public void setXXX(int,&lt;type&gt;)</CODE>
* method, then it is a write-only indexed property of * method, then it is a write-only indexed property of
* type &lt;type&gt;. There may also be a * type &lt;type&gt;. There may also be a
* <CODE>public &lt;type&gt;[] getXXX()</CODE> and a * <CODE>public &lt;type&gt;[] getXXX()</CODE> and a
* <CODE>public void setXXX(&lt;type&gt;)</CODE> * <CODE>public void setXXX(&lt;type&gt;)</CODE>
* method as well.</CODE></LI> * method as well.</LI>
* <LI>If there is a * <LI>If there is a
* <CODE>public &lt;type&gt; getXXX()</CODE> method, * <CODE>public &lt;type&gt; getXXX()</CODE> method,
* then XXX is a read-only property of type * then XXX is a read-only property of type
......
...@@ -77,7 +77,7 @@ package java.beans; ...@@ -77,7 +77,7 @@ package java.beans;
** have isPaintable() return true and implement the paintValue() method. ** have isPaintable() return true and implement the paintValue() method.
** This method does not determine in any way how the value is edited; ** This method does not determine in any way how the value is edited;
** merely how it is displayed.</LI> ** 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 ** this by returning a non-null String from getAsText(). If you support
** text input, you *must* support setAsText().</LI> ** text input, you *must* support setAsText().</LI>
** <LI>Give the caller a set of possible values, such as "true"/"false", that ** <LI>Give the caller a set of possible values, such as "true"/"false", that
......
...@@ -60,19 +60,20 @@ import java.awt.Font; ...@@ -60,19 +60,20 @@ import java.awt.Font;
* already registered; if it is, that property editor is * already registered; if it is, that property editor is
* used. Next it takes the type's classname and appends * used. Next it takes the type's classname and appends
* "Editor" to it, and searches first in the class's * "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> * <p>Default property editors are provided for:</p>
* <OL> *
* <LI>boolean, byte, short, int, long, float, and double</LI> * <ol>
* <LI>java.lang.String</LI> * <li>boolean, byte, short, int, long, float, and double</li>
* <LI>java.awt.Color</LI> * <li>java.lang.String</li>
* <LI>java.awt.Font</LI> * <li>java.awt.Color</li>
* <OL> * <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 * Filename or something like it should be provided. As well
* as char. * as char.</p>
* *
* @author John Keiser * @author John Keiser
* @since 1.1 * @since 1.1
......
...@@ -62,14 +62,12 @@ import java.util.Iterator; ...@@ -62,14 +62,12 @@ import java.util.Iterator;
public interface BeanContextServiceProvider { public interface BeanContextServiceProvider {
/** /**
* Get a service. * Get a service.
* Called from <code>BeanContextServices.getService(). * Called from <code>BeanContextServices.getService()</code>.
* <P>
* *
* 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 * <code>BeanContextServiceProvider</code> chooses not honor the
* request for some reason, then this method will return * request for some reason, then this method will return
* <code>null</code>. * <code>null</code>.</p>
* <P>
* *
* This method may throw unchecked exceptions, so watch out. * This method may throw unchecked exceptions, so watch out.
* *
......
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