Index: java/awt/AWTPermission.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/awt/AWTPermission.java,v retrieving revision 1.3 diff -u -r1.3 AWTPermission.java --- java/awt/AWTPermission.java 18 Mar 2002 22:40:25 -0000 1.3 +++ java/awt/AWTPermission.java 17 Apr 2004 15:46:23 -0000 @@ -79,7 +79,7 @@ * * fullScreenExclusive * enter full-screen exclusive mode - * malicious code could masquerade as a trusted program + * malicious code could masquerade as a trusted program * * * @author Tom Tromey Index: java/awt/Component.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/awt/Component.java,v retrieving revision 1.30 diff -u -r1.30 Component.java --- java/awt/Component.java 19 Mar 2004 21:22:24 -0000 1.30 +++ java/awt/Component.java 17 Apr 2004 15:46:24 -0000 @@ -105,7 +105,7 @@ * 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. * - *

+ * 
  * import java.awt.*;
  * import java.awt.event.*;
  * import java.io.Serializable;
@@ -127,6 +127,7 @@
  *     aButton.addActionListener(new MyActionListener());
  *   }
  * }
+ * 
* *

Status: Incomplete. The event dispatch mechanism is implemented. All * other methods defined in the J2SE 1.3 API javadoc exist, but are mostly Index: java/awt/ComponentOrientation.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/awt/ComponentOrientation.java,v retrieving revision 1.3 diff -u -r1.3 ComponentOrientation.java --- java/awt/ComponentOrientation.java 6 May 2002 02:43:17 -0000 1.3 +++ java/awt/ComponentOrientation.java 17 Apr 2004 15:46:24 -0000 @@ -171,13 +171,15 @@ } /** - * Gets an orientation from a resource bundle. This tries the following:

    + * Gets an orientation from a resource bundle. This tries the following: + * + *
      *
    • Use the key "Orientation" to find an instance of ComponentOrientation * in the bundle.
    • *
    • Get the locale of the resource bundle, and get the orientation of * that locale.
    • - *
    • Give up and get the orientation of the default locale.
    • - *
        + *
      1. Give up and get the orientation of the default locale.
      2. + *
    * * @param bdl the bundle to use * @return the orientation Index: java/awt/Dialog.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/awt/Dialog.java,v retrieving revision 1.17 diff -u -r1.17 Dialog.java --- java/awt/Dialog.java 26 Jan 2004 15:43:41 -0000 1.17 +++ java/awt/Dialog.java 17 Apr 2004 15:46:24 -0000 @@ -123,8 +123,8 @@ * parent and modality, that is resizable and which has no title. * * @param parent The parent frame of this dialog box. - * @param modal if this dialog box is modal, false - * otherwise. + * @param modal true if this dialog box is modal, + * false otherwise. * * @exception IllegalArgumentException If the owner's GraphicsConfiguration * is not from a screen device, or if owner is null. This exception is always @@ -164,8 +164,8 @@ * * @param parent The parent frame of this dialog box. * @param title The title string for this dialog box. - * @param modal if this dialog box is modal, false - * otherwise. + * @param modal true if this dialog box is modal, + * false otherwise. * * @exception IllegalArgumentException If owner is null or * GraphicsEnvironment.isHeadless() returns true. @@ -183,8 +183,8 @@ * * @param parent The parent frame of this dialog box. * @param title The title string for this dialog box. - * @param modal if this dialog box is modal, false - * otherwise. + * @param modal true if this dialog box is modal, + * false otherwise. * @param gc The GraphicsConfiguration object to use. * * @exception IllegalArgumentException If owner is null, the Index: java/awt/FontMetrics.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/awt/FontMetrics.java,v retrieving revision 1.7 diff -u -r1.7 FontMetrics.java --- java/awt/FontMetrics.java 22 Mar 2004 13:07:12 -0000 1.7 +++ java/awt/FontMetrics.java 17 Apr 2004 15:46:25 -0000 @@ -47,12 +47,12 @@ * least the following methods: *

    *

      - *
    • getAscent - *
    • getDescent - *
    • getLeading() - *
    • getMaxAdvance() - *
    • charWidth(char) - *
    • charsWidth(char[], int, int) + *
    • getAscent()
    • + *
    • getDescent()
    • + *
    • getLeading()
    • + *
    • getMaxAdvance()
    • + *
    • charWidth(char)
    • + *
    • charsWidth(char[], int, int)
    • *
    * * @author Aaron M. Renn (address@hidden) Index: java/awt/datatransfer/DataFlavor.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/awt/datatransfer/DataFlavor.java,v retrieving revision 1.19 diff -u -r1.19 DataFlavor.java --- java/awt/datatransfer/DataFlavor.java 6 Feb 2004 08:59:01 -0000 1.19 +++ java/awt/datatransfer/DataFlavor.java 17 Apr 2004 15:46:25 -0000 @@ -270,7 +270,7 @@ /** * Initializes a new instance of DataFlavor with the * specified MIME type and description. If the MIME type has a - * "class=" parameter then the representation class will + * "class=<rep class>" parameter then the representation class will * be the class name specified. Otherwise the class defaults to * java.io.InputStream. If the human readable name * is not specified (null) then the human readable name @@ -319,7 +319,7 @@ /** * Initializes a new instance of DataFlavor with the * specified MIME type and description. If the MIME type has a - * "class=" parameter then the representation class will + * "class=<rep class>" parameter then the representation class will * be the class name specified. Otherwise the class defaults to * java.io.InputStream. If the human readable name * is not specified (null) then the human readable name @@ -709,10 +709,10 @@ * are met: *

    *

      - *
    • The object is not null. - *
    • The object is an instance of DataFlavor. + *
    • The object is not null.
    • + *
    • The object is an instance of DataFlavor.
    • *
    • The object's MIME type and representation class are equal to - * this object's. + * this object's.
    • *
    * * @param obj The Object to test against. Index: java/beans/Introspector.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/beans/Introspector.java,v retrieving revision 1.16 diff -u -r1.16 Introspector.java --- java/beans/Introspector.java 26 Dec 2003 19:39:54 -0000 1.16 +++ java/beans/Introspector.java 17 Apr 2004 15:46:25 -0000 @@ -65,7 +65,7 @@ * 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 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.

    * @@ -113,14 +113,14 @@ * type <type>. There may also be a * public <type>[] getXXX() and a * public void setXXX(<type>) - * method as well. + * method as well. *

  1. If there is a * public void setXXX(int,<type>) * method, then it is a write-only indexed property of * type <type>. There may also be a * public <type>[] getXXX() and a * public void setXXX(<type>) - * method as well.
  2. + * method as well. *
  3. If there is a * public <type> getXXX() method, * then XXX is a read-only property of type Index: java/beans/PropertyEditor.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/beans/PropertyEditor.java,v retrieving revision 1.5 diff -u -r1.5 PropertyEditor.java --- java/beans/PropertyEditor.java 12 Oct 2003 15:29:25 -0000 1.5 +++ java/beans/PropertyEditor.java 17 Apr 2004 15:46:25 -0000 @@ -77,7 +77,7 @@ ** 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.
  4. - ** Let the caller of the PropertyEditor give the user a text input. Do + **
  5. 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().
  6. **
  7. Give the caller a set of possible values, such as "true"/"false", that Index: java/beans/PropertyEditorManager.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/beans/PropertyEditorManager.java,v retrieving revision 1.8 diff -u -r1.8 PropertyEditorManager.java --- java/beans/PropertyEditorManager.java 13 Jul 2003 23:34:19 -0000 1.8 +++ java/beans/PropertyEditorManager.java 17 Apr 2004 15:46:25 -0000 @@ -60,19 +60,20 @@ * 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.

    + * package and then in the property editor search path. * - * Default property editors are provided for:

    - *

      - *
    1. boolean, byte, short, int, long, float, and double
    2. - *
    3. java.lang.String
    4. - *
    5. java.awt.Color
    6. - *
    7. java.awt.Font
    8. - *
        + *

        Default property editors are provided for:

        + * + *
          + *
        1. boolean, byte, short, int, long, float, and double
        2. + *
        3. java.lang.String
        4. + *
        5. java.awt.Color
        6. + *
        7. java.awt.Font
        8. + *
        * - * Spec Suggestion: Perhaps an editor for + *

        Spec Suggestion: Perhaps an editor for * Filename or something like it should be provided. As well - * as char. + * as char.

        * * @author John Keiser * @since 1.1 Index: java/beans/beancontext/BeanContextServiceProvider.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/beans/beancontext/BeanContextServiceProvider.java,v retrieving revision 1.4 diff -u -r1.4 BeanContextServiceProvider.java --- java/beans/beancontext/BeanContextServiceProvider.java 12 Oct 2003 15:29:25 -0000 1.4 +++ java/beans/beancontext/BeanContextServiceProvider.java 17 Apr 2004 15:46:25 -0000 @@ -62,14 +62,12 @@ public interface BeanContextServiceProvider { /** * Get a service. - * Called from BeanContextServices.getService(). - *

        + * Called from BeanContextServices.getService(). * - * If the requested service class is not available, or if this + *

        If the requested service class is not available, or if this * BeanContextServiceProvider chooses not honor the * request for some reason, then this method will return - * null. - *

        + * null.

        * * This method may throw unchecked exceptions, so watch out. *