diff --git a/jdk/src/share/classes/java/applet/Applet.java b/jdk/src/share/classes/java/applet/Applet.java index 2e8e39a19ff..63d3f0a9f3c 100644 --- a/jdk/src/share/classes/java/applet/Applet.java +++ b/jdk/src/share/classes/java/applet/Applet.java @@ -392,7 +392,7 @@ public class Applet extends Panel { * Each element of the array should be a set of three * Strings containing the name, the type, and a * description. For example: - *

+     * 
      * String pinfo[][] = {
      *   {"fps",    "1-10",    "frames per second"},
      *   {"repeat", "boolean", "repeat image loop"},
diff --git a/jdk/src/share/classes/java/applet/AppletContext.java b/jdk/src/share/classes/java/applet/AppletContext.java
index f28308cfb11..c031686acc0 100644
--- a/jdk/src/share/classes/java/applet/AppletContext.java
+++ b/jdk/src/share/classes/java/applet/AppletContext.java
@@ -107,7 +107,7 @@ public interface AppletContext {
      * target argument indicates in which HTML frame the
      * document is to be displayed.
      * The target argument is interpreted as follows:
-     * 

+ * *

* *
Target ArgumentDescription
"_self" Show in the window and frame that diff --git a/jdk/src/share/classes/java/awt/AWTPermission.java b/jdk/src/share/classes/java/awt/AWTPermission.java index 2b371bce714..0859872cb7a 100644 --- a/jdk/src/share/classes/java/awt/AWTPermission.java +++ b/jdk/src/share/classes/java/awt/AWTPermission.java @@ -43,7 +43,6 @@ import java.security.BasicPermission; * target names, and for each provides a description of what the * permission allows and a discussion of the risks of granting code * the permission. - *

* * * diff --git a/jdk/src/share/classes/java/awt/AlphaComposite.java b/jdk/src/share/classes/java/awt/AlphaComposite.java index 9f8b64f2684..f08ea2b47bf 100644 --- a/jdk/src/share/classes/java/awt/AlphaComposite.java +++ b/jdk/src/share/classes/java/awt/AlphaComposite.java @@ -175,7 +175,6 @@ import sun.java2d.SunCompositeContext; * Fs and Fd and then the resulting * premultiplied components Ar and Cr. * - *

*

Preparing Results

* *

@@ -193,7 +192,6 @@ import sun.java2d.SunCompositeContext; * by zero" and the color components are left as * all zeros. * - *

*

Performance Considerations

* *

@@ -216,7 +214,6 @@ import sun.java2d.SunCompositeContext; * for their pixels. Such sources supply an alpha of 1.0 for * all of their pixels. * - *

*

  • * Many destinations also have no place to store the alpha values * that result from the blending calculations performed by this class. @@ -227,7 +224,6 @@ import sun.java2d.SunCompositeContext; * values by the resulting alpha value before storing the color * values and discarding the alpha value. * - *

    *

  • * The accuracy of the results depends on the manner in which pixels * are stored in the destination. @@ -248,7 +244,6 @@ import sun.java2d.SunCompositeContext; * the need to choose a pixel from a limited palette to match the * results of the blending equations. * - *

    *

  • * Nearly all formats store pixels as discrete integers rather than * the floating point values used in the reference equations above. @@ -268,7 +263,6 @@ import sun.java2d.SunCompositeContext; * represents 0.0 and 0xff represents * 1.0. * - *

    *

  • * The internal implementation can approximate some of the equations * and it can also eliminate some steps to avoid unnecessary operations. @@ -332,7 +326,6 @@ import sun.java2d.SunCompositeContext; *

    * and thus they would all match. * - *

    *

  • * Because of the technique of simplifying the equations for * calculation efficiency, some implementations might perform diff --git a/jdk/src/share/classes/java/awt/BasicStroke.java b/jdk/src/share/classes/java/awt/BasicStroke.java index 5cc466640c2..80b4a3d3eb3 100644 --- a/jdk/src/share/classes/java/awt/BasicStroke.java +++ b/jdk/src/share/classes/java/awt/BasicStroke.java @@ -39,7 +39,7 @@ import java.lang.annotation.Native; * {@link Shape} and the decorations applied at the ends and joins of * path segments of the Shape. * These rendering attributes include: - *
    + *
    *
    width *
    The pen width, measured perpendicularly to the pen trajectory. *
    end caps diff --git a/jdk/src/share/classes/java/awt/BorderLayout.java b/jdk/src/share/classes/java/awt/BorderLayout.java index 8b131c485d3..52f56ed8bf2 100644 --- a/jdk/src/share/classes/java/awt/BorderLayout.java +++ b/jdk/src/share/classes/java/awt/BorderLayout.java @@ -99,7 +99,7 @@ import java.util.Hashtable; * style="float:center; margin: 7px 10px;"> *

    * The code for this applet is as follows: - *

    + * *


      * import java.awt.*;
      * import java.applet.Applet;
    diff --git a/jdk/src/share/classes/java/awt/Button.java b/jdk/src/share/classes/java/awt/Button.java
    index 83506b6fdb1..da7a01f8535 100644
    --- a/jdk/src/share/classes/java/awt/Button.java
    +++ b/jdk/src/share/classes/java/awt/Button.java
    @@ -388,7 +388,7 @@ public class Button extends Component implements Accessible {
          * This method is not called unless action events are
          * enabled for this button. Action events are enabled
          * when one of the following occurs:
    -     * 

      + *
        *
      • An ActionListener object is registered * via addActionListener. *
      • Action events are enabled via enableEvents. diff --git a/jdk/src/share/classes/java/awt/Checkbox.java b/jdk/src/share/classes/java/awt/Checkbox.java index 7568b0c5aee..0215382df3e 100644 --- a/jdk/src/share/classes/java/awt/Checkbox.java +++ b/jdk/src/share/classes/java/awt/Checkbox.java @@ -41,7 +41,7 @@ import javax.accessibility.*; *

        * The following code example creates a set of check boxes in * a grid layout: - *

        + * *


          * setLayout(new GridLayout(3, 1));
          * add(new Checkbox("one", null, true));
        @@ -558,7 +558,7 @@ public class Checkbox extends Component implements ItemSelectable, Accessible {
              * This method is not called unless item events are
              * enabled for this component. Item events are enabled
              * when one of the following occurs:
        -     * 

          + *
            *
          • An ItemListener object is registered * via addItemListener. *
          • Item events are enabled via enableEvents. diff --git a/jdk/src/share/classes/java/awt/CheckboxGroup.java b/jdk/src/share/classes/java/awt/CheckboxGroup.java index 25b0697f117..90994f4a72d 100644 --- a/jdk/src/share/classes/java/awt/CheckboxGroup.java +++ b/jdk/src/share/classes/java/awt/CheckboxGroup.java @@ -35,7 +35,7 @@ package java.awt; *

            * The following code example produces a new check box group, * with three check boxes: - *

            + * *


              * setLayout(new GridLayout(3, 1));
              * CheckboxGroup cbg = new CheckboxGroup();
            diff --git a/jdk/src/share/classes/java/awt/CheckboxMenuItem.java b/jdk/src/share/classes/java/awt/CheckboxMenuItem.java
            index 20265c7ad12..424a53102e8 100644
            --- a/jdk/src/share/classes/java/awt/CheckboxMenuItem.java
            +++ b/jdk/src/share/classes/java/awt/CheckboxMenuItem.java
            @@ -367,7 +367,7 @@ public class CheckboxMenuItem extends MenuItem implements ItemSelectable, Access
                  * This method is not called unless item events are
                  * enabled for this menu item. Item events are enabled
                  * when one of the following occurs:
            -     * 

              + *
                *
              • An ItemListener object is registered * via addItemListener. *
              • Item events are enabled via enableEvents. diff --git a/jdk/src/share/classes/java/awt/Choice.java b/jdk/src/share/classes/java/awt/Choice.java index b50746205d9..1a75f903c3d 100644 --- a/jdk/src/share/classes/java/awt/Choice.java +++ b/jdk/src/share/classes/java/awt/Choice.java @@ -40,7 +40,7 @@ import javax.accessibility.*; * The current choice is displayed as the title of the menu. *

                * The following code example produces a pop-up menu: - *

                + * *


                  * Choice ColorChooser = new Choice();
                  * ColorChooser.add("Green");
                @@ -609,7 +609,7 @@ public class Choice extends Component implements ItemSelectable, Accessible {
                      * This method is not called unless item events are
                      * enabled for this component. Item events are enabled
                      * when one of the following occurs:
                -     * 

                  + *
                    *
                  • An ItemListener object is registered * via addItemListener. *
                  • Item events are enabled via enableEvents. diff --git a/jdk/src/share/classes/java/awt/Component.java b/jdk/src/share/classes/java/awt/Component.java index bd913cbd50e..87c8879d0b6 100644 --- a/jdk/src/share/classes/java/awt/Component.java +++ b/jdk/src/share/classes/java/awt/Component.java @@ -106,7 +106,7 @@ import sun.util.logging.PlatformLogger; * adding/removing components to/from containers, the whole hierarchy must be * validated afterwards by means of the {@link Container#validate()} method * invoked on the top-most invalid container of the hierarchy. - *

                    + * *

                    Serialization

                    * It is important to note that only AWT listeners which conform * to the Serializable protocol will be saved when @@ -3859,7 +3859,7 @@ public abstract class Component implements ImageObserver, MenuContainer, * This is a proxy capabilities class used when a FlipBufferStrategy * is created instead of the requested Blit strategy. * - * @see sun.awt.SunGraphicsEnvironment#isFlipStrategyPreferred(ComponentPeer) + * @see sun.java2d.SunGraphicsEnvironment#isFlipStrategyPreferred(ComponentPeer) */ private class ProxyCapabilities extends ExtendedBufferCapabilities { private BufferCapabilities orig; @@ -4515,7 +4515,7 @@ public abstract class Component implements ImageObserver, MenuContainer, * Private class to perform sub-region blitting. Swing will use * this subclass via the SubRegionShowable interface in order to * copy only the area changed during a repaint. - * @see javax.swing.BufferStrategyPaintManager + * See javax.swing.BufferStrategyPaintManager. */ private class BltSubRegionBufferStrategy extends BltBufferStrategy implements SubRegionShowable @@ -6328,7 +6328,7 @@ public abstract class Component implements ImageObserver, MenuContainer, * This method is not called unless component events are * enabled for this component. Component events are enabled * when one of the following occurs: - *

                      + *
                        *
                      • A ComponentListener object is registered * via addComponentListener. *
                      • Component events are enabled via enableEvents. @@ -6373,7 +6373,7 @@ public abstract class Component implements ImageObserver, MenuContainer, * This method is not called unless focus events are * enabled for this component. Focus events are enabled * when one of the following occurs: - *

                          + *
                            *
                          • A FocusListener object is registered * via addFocusListener. *
                          • Focus events are enabled via enableEvents. @@ -6393,7 +6393,7 @@ public abstract class Component implements ImageObserver, MenuContainer, * with a FocusEvent as the argument will result in a * call to the Component's processFocusEvent * method regardless of the current KeyboardFocusManager. - *

                            + * *

                            Note that if the event parameter is null * the behavior is unspecified and may result in an * exception. @@ -6430,7 +6430,7 @@ public abstract class Component implements ImageObserver, MenuContainer, * This method is not called unless key events are * enabled for this component. Key events are enabled * when one of the following occurs: - *

                              + *
                                *
                              • A KeyListener object is registered * via addKeyListener. *
                              • Key events are enabled via enableEvents. @@ -6499,7 +6499,7 @@ public abstract class Component implements ImageObserver, MenuContainer, * This method is not called unless mouse events are * enabled for this component. Mouse events are enabled * when one of the following occurs: - *

                                  + *
                                    *
                                  • A MouseListener object is registered * via addMouseListener. *
                                  • Mouse events are enabled via enableEvents. @@ -6547,7 +6547,7 @@ public abstract class Component implements ImageObserver, MenuContainer, * This method is not called unless mouse motion events are * enabled for this component. Mouse motion events are enabled * when one of the following occurs: - *

                                      + *
                                        *
                                      • A MouseMotionListener object is registered * via addMouseMotionListener. *
                                      • Mouse motion events are enabled via enableEvents. @@ -6586,7 +6586,7 @@ public abstract class Component implements ImageObserver, MenuContainer, * This method is not called unless mouse wheel events are * enabled for this component. Mouse wheel events are enabled * when one of the following occurs: - *

                                          + *
                                            *
                                          • A MouseWheelListener object is registered * via addMouseWheelListener. *
                                          • Mouse wheel events are enabled via enableEvents. @@ -6630,7 +6630,7 @@ public abstract class Component implements ImageObserver, MenuContainer, * This method is not called unless input method events * are enabled for this component. Input method events are enabled * when one of the following occurs: - *

                                              + *
                                                *
                                              • An InputMethodListener object is registered * via addInputMethodListener. *
                                              • Input method events are enabled via enableEvents. @@ -6669,7 +6669,7 @@ public abstract class Component implements ImageObserver, MenuContainer, * This method is not called unless hierarchy events * are enabled for this component. Hierarchy events are enabled * when one of the following occurs: - *

                                                  + *
                                                    *
                                                  • An HierarchyListener object is registered * via addHierarchyListener. *
                                                  • Hierarchy events are enabled via enableEvents. @@ -6705,7 +6705,7 @@ public abstract class Component implements ImageObserver, MenuContainer, * This method is not called unless hierarchy bounds events * are enabled for this component. Hierarchy bounds events are enabled * when one of the following occurs: - *

                                                      + *
                                                        *
                                                      • An HierarchyBoundsListener object is registered * via addHierarchyBoundsListener. *
                                                      • Hierarchy bounds events are enabled via enableEvents. diff --git a/jdk/src/share/classes/java/awt/Container.java b/jdk/src/share/classes/java/awt/Container.java index a779d72d489..b6bef12f91b 100644 --- a/jdk/src/share/classes/java/awt/Container.java +++ b/jdk/src/share/classes/java/awt/Container.java @@ -186,7 +186,7 @@ public class Container extends Component { * the method can return the Container on which it is originally called * in case if none of its children are the current mouse event targets. * - * @see #getMouseEventTarget(int, int, boolean, boolean, boolean) + * @see #getMouseEventTarget(int, int, boolean) */ static final boolean INCLUDE_SELF = true; @@ -195,7 +195,7 @@ public class Container extends Component { * of getMouseEventTarget. It is used to specify whether * the method should search only lightweight components. * - * @see #getMouseEventTarget(int, int, boolean, boolean, boolean) + * @see #getMouseEventTarget(int, int, boolean) */ static final boolean SEARCH_HEAVYWEIGHTS = true; @@ -1037,7 +1037,7 @@ public class Container extends Component { * every add request to a container as all other add methods defer * to this one. An overriding method should * usually include a call to the superclass's version of the method: - *

                                                        + * *

                                                        * super.addImpl(comp, constraints, index) *
                                                        diff --git a/jdk/src/share/classes/java/awt/EventFilter.java b/jdk/src/share/classes/java/awt/EventFilter.java index 56c69dd050c..1c38467f010 100644 --- a/jdk/src/share/classes/java/awt/EventFilter.java +++ b/jdk/src/share/classes/java/awt/EventFilter.java @@ -28,20 +28,20 @@ interface EventFilter { /** * Enumeration for possible values for acceptEvent(AWTEvent ev) method. - * @see EventDispatchThread#pumpEventsForFilters(EventFilter) + * @see EventDispatchThread#pumpEventsForFilter */ static enum FilterAction { /** * ACCEPT means that this filter do not filter the event and allowes other * active filters to proceed it. If all the active filters accept the event, it * is dispatched by the EventDispatchThread - * @see EventDispatchThread#pumpEventsForFilters(EventFilter) + * @see EventDispatchThread#pumpEventsForFilter */ ACCEPT, /** * REJECT means that this filter filter the event. No other filters are queried, * and the event is not dispatched by the EventDispatchedThread - * @see EventDispatchThread#pumpEventsForFilters(EventFilter) + * @see EventDispatchThread#pumpEventsForFilter */ REJECT, /** @@ -51,7 +51,7 @@ interface EventFilter { * It is not recommended to use ACCEPT_IMMEDIATELY as there may be some active * filters not queried yet that do not accept this event. It is primarily used * by modal filters. - * @see EventDispatchThread#pumpEventsForFilters(EventFilter) + * @see EventDispatchThread#pumpEventsForFilter * @see ModalEventFilter */ ACCEPT_IMMEDIATELY diff --git a/jdk/src/share/classes/java/awt/EventQueue.java b/jdk/src/share/classes/java/awt/EventQueue.java index af9e1bf08f3..efe0421f711 100644 --- a/jdk/src/share/classes/java/awt/EventQueue.java +++ b/jdk/src/share/classes/java/awt/EventQueue.java @@ -652,7 +652,7 @@ public class EventQueue { * Dispatches an event. The manner in which the event is * dispatched depends upon the type of the event and the * type of the event's source object: - *

                                                        + * *

  • * * diff --git a/jdk/src/share/classes/java/awt/FileDialog.java b/jdk/src/share/classes/java/awt/FileDialog.java index 0fc63c7fde4..b693b9b8788 100644 --- a/jdk/src/share/classes/java/awt/FileDialog.java +++ b/jdk/src/share/classes/java/awt/FileDialog.java @@ -439,7 +439,6 @@ public class FileDialog extends Dialog { * Note that the method is private and it's intended to be used * by the peers through the AWTAccessor API. * - * @param directory the current directory * @param files the array that contains the short names of * all the files that the user selects. * diff --git a/jdk/src/share/classes/java/awt/FlowLayout.java b/jdk/src/share/classes/java/awt/FlowLayout.java index 4675bbc573e..9961c9bfdbb 100644 --- a/jdk/src/share/classes/java/awt/FlowLayout.java +++ b/jdk/src/share/classes/java/awt/FlowLayout.java @@ -57,7 +57,7 @@ import java.io.IOException; * style="float:center; margin: 7px 10px;"> *

    * Here is the code for this applet: - *

    + * *


      * import java.awt.*;
      * import java.applet.Applet;
    @@ -129,9 +129,9 @@ public class FlowLayout implements LayoutManager, java.io.Serializable {
          * how each row distributes empty space.
          * It can be one of the following values:
          * 
      - * LEFT - * RIGHT - * CENTER + *
    • LEFT + *
    • RIGHT + *
    • CENTER *
    * * @serial @@ -146,11 +146,11 @@ public class FlowLayout implements LayoutManager, java.io.Serializable { * v1.2 and greater. * It can be one of the following three values: *
      - * LEFT - * RIGHT - * CENTER - * LEADING - * TRAILING + *
    • LEFT + *
    • RIGHT + *
    • CENTER + *
    • LEADING + *
    • TRAILING *
    * * @serial diff --git a/jdk/src/share/classes/java/awt/Font.java b/jdk/src/share/classes/java/awt/Font.java index c5c400c651b..ed910e0834f 100644 --- a/jdk/src/share/classes/java/awt/Font.java +++ b/jdk/src/share/classes/java/awt/Font.java @@ -75,13 +75,13 @@ import static sun.font.EAttribute.*; * * A character is a symbol that represents an item such as a letter, * a digit, or punctuation in an abstract way. For example, 'g', - * LATIN SMALL LETTER G, is a character. + * LATIN SMALL LETTER G, is a character. *

    * A glyph is a shape used to render a character or a sequence of * characters. In simple writing systems, such as Latin, typically one glyph * represents one character. In general, however, characters and glyphs do not * have one-to-one correspondence. For example, the character 'á' - * LATIN SMALL LETTER A WITH ACUTE, can be represented by + * LATIN SMALL LETTER A WITH ACUTE, can be represented by * two glyphs: one for 'a' and one for '´'. On the other hand, the * two-character string "fi" can be represented by a single glyph, an * "fi" ligature. In complex writing systems, such as Arabic or the South @@ -93,7 +93,7 @@ import static sun.font.EAttribute.*; * of characters as well as the tables needed to map sequences of characters to * corresponding sequences of glyphs. * - *

    Physical and Logical Fonts

    + *

    Physical and Logical Fonts

    * * The Java Platform distinguishes between two kinds of fonts: * physical fonts and logical fonts. @@ -130,7 +130,7 @@ import static sun.font.EAttribute.*; * Internationalization FAQ * document. * - *

    Font Faces and Names

    + *

    Font Faces and Names

    * * A Font * can have many faces, such as heavy, medium, oblique, gothic and @@ -160,7 +160,7 @@ import static sun.font.EAttribute.*; * with varying sizes, styles, transforms and font features via the * deriveFont methods in this class. * - *

    Font and TextAttribute

    + *

    Font and TextAttribute

    * *

    Font supports most * TextAttributes. This makes some operations, such as @@ -197,7 +197,7 @@ import static sun.font.EAttribute.*; * avoid this problem. Clients who use input method highlights can * convert these to the platform-specific attributes for that * highlight on the current platform and set them on the Font as - * a workaround.

    + * a workaround. * *

    The Map-based constructor and * deriveFont APIs ignore the FONT attribute, and it is @@ -1419,7 +1419,7 @@ public class Font implements java.io.Serializable * To ensure that this method returns the desired Font, * format the str parameter in * one of these ways - *

    + * *

      *
    • fontname-style-pointsize *
    • fontname-pointsize diff --git a/jdk/src/share/classes/java/awt/Graphics.java b/jdk/src/share/classes/java/awt/Graphics.java index 3e2dcb55008..c440b0a8fa1 100644 --- a/jdk/src/share/classes/java/awt/Graphics.java +++ b/jdk/src/share/classes/java/awt/Graphics.java @@ -39,7 +39,7 @@ import java.text.AttributedCharacterIterator; * A Graphics object encapsulates state information needed * for the basic rendering operations that Java supports. This * state information includes the following properties: - *

      + * *

        *
      • The Component object on which to draw. *
      • A translation origin for rendering and clipping coordinates. @@ -63,7 +63,7 @@ import java.text.AttributedCharacterIterator; *

        * The graphics pen hangs down and to the right from the path it traverses. * This has the following implications: - *

          + *
            *
          • If you draw a figure that covers a given rectangle, that * figure occupies one extra row of pixels on the right and bottom edges * as compared to filling a figure that is bounded by that same rectangle. @@ -136,7 +136,7 @@ public abstract class Graphics { * interpreted in the coordinate system of the original * Graphics object. The new graphics context is * identical to the original, except in two respects: - *

            + * *

              *
            • * The new graphics context is translated by (xy). diff --git a/jdk/src/share/classes/java/awt/GridBagConstraints.java b/jdk/src/share/classes/java/awt/GridBagConstraints.java index 3651b39be92..bf53b39b21f 100644 --- a/jdk/src/share/classes/java/awt/GridBagConstraints.java +++ b/jdk/src/share/classes/java/awt/GridBagConstraints.java @@ -457,7 +457,7 @@ public class GridBagConstraints implements Cloneable, java.io.Serializable { * resize the component, and if so, how. *

              * The following values are valid for fill: - *

              + * *

                *
              • * NONE: Do not resize the component. diff --git a/jdk/src/share/classes/java/awt/GridBagLayout.java b/jdk/src/share/classes/java/awt/GridBagLayout.java index 8ac290a7a42..0b0f2bc5dea 100644 --- a/jdk/src/share/classes/java/awt/GridBagLayout.java +++ b/jdk/src/share/classes/java/awt/GridBagLayout.java @@ -55,7 +55,7 @@ import java.util.Arrays; * of the GridBagConstraints objects that are associated * with its components. You customize a GridBagConstraints * object by setting one or more of its instance variables: - *

                + * *

                *
                {@link GridBagConstraints#gridx}, * {@link GridBagConstraints#gridy} @@ -121,7 +121,7 @@ import java.util.Arrays; * ComponentOrientation property while absolute values * are not. Baseline relative values are calculated relative to the * baseline. Valid values are: - *

                + * *

    Event Type
    * @@ -251,7 +251,7 @@ import java.util.Arrays; * managed by a grid bag layout. Figure 2 shows the layout for a horizontal, * left-to-right container and Figure 3 shows the layout for a horizontal, * right-to-left container. - *

    + * *

    * *
    @@ -270,7 +270,7 @@ import java.util.Arrays; * of its associated GridBagConstraints object * set to GridBagConstraints.BOTH. * In addition, the components have the following non-default constraints: - *

    + * *

      *
    • Button1, Button2, Button3: weightx = 1.0 *
    • Button4: weightx = 1.0, @@ -285,7 +285,7 @@ import java.util.Arrays; *
    *

    * Here is the code that implements the example shown above: - *

    + * *


      * import java.awt.*;
      * import java.util.*;
    diff --git a/jdk/src/share/classes/java/awt/GridLayout.java b/jdk/src/share/classes/java/awt/GridLayout.java
    index 596208c3e65..ef506b025ef 100644
    --- a/jdk/src/share/classes/java/awt/GridLayout.java
    +++ b/jdk/src/share/classes/java/awt/GridLayout.java
    @@ -32,7 +32,7 @@ package java.awt;
      * and one component is placed in each rectangle.
      * For example, the following is an applet that lays out six buttons
      * into three rows and two columns:
    - * 

    + * *


    *
      * import java.awt.*;
    @@ -54,7 +54,7 @@ package java.awt;
      * and left-to-right, the above example produces the output shown in Figure 1.
      * If the container's ComponentOrientation property is horizontal
      * and right-to-left, the example produces the output shown in Figure 2.
    - * 

    + * * * *
    * For example, the code . . . - *

    + * *


      * setLayout(new FlowLayout(FlowLayout.CENTER, 10, 10));
      * add(new Label("Hi There!"));
    diff --git a/jdk/src/share/classes/java/awt/LinearGradientPaint.java b/jdk/src/share/classes/java/awt/LinearGradientPaint.java
    index f4af6026da2..eed1f34333c 100644
    --- a/jdk/src/share/classes/java/awt/LinearGradientPaint.java
    +++ b/jdk/src/share/classes/java/awt/LinearGradientPaint.java
    @@ -75,7 +75,6 @@ import java.beans.ConstructorProperties;
      * 

    * The following code demonstrates typical usage of * {@code LinearGradientPaint}: - *

    *

      *     Point2D start = new Point2D.Float(0, 0);
      *     Point2D end = new Point2D.Float(50, 50);
    @@ -92,7 +91,6 @@ import java.beans.ConstructorProperties;
      * 

    * This image demonstrates the example code above for each * of the three cycle methods: - *

    *

    * image showing the output of the example code diff --git a/jdk/src/share/classes/java/awt/LinearGradientPaintContext.java b/jdk/src/share/classes/java/awt/LinearGradientPaintContext.java index c0da02bffa2..965e1484ec4 100644 --- a/jdk/src/share/classes/java/awt/LinearGradientPaintContext.java +++ b/jdk/src/share/classes/java/awt/LinearGradientPaintContext.java @@ -66,8 +66,8 @@ final class LinearGradientPaintContext extends MultipleGradientPaintContext { * concatenated with this) * @param hints the hints that the context object uses to choose * between rendering alternatives - * @param dStart gradient start point, in user space - * @param dEnd gradient end point, in user space + * @param start gradient start point, in user space + * @param end gradient end point, in user space * @param fractions the fractions specifying the gradient distribution * @param colors the gradient colors * @param cycleMethod either NO_CYCLE, REFLECT, or REPEAT diff --git a/jdk/src/share/classes/java/awt/List.java b/jdk/src/share/classes/java/awt/List.java index b3be9aeaf2e..754291809e6 100644 --- a/jdk/src/share/classes/java/awt/List.java +++ b/jdk/src/share/classes/java/awt/List.java @@ -41,7 +41,7 @@ import javax.accessibility.*; * the user can choose either one item or multiple items. *

    * For example, the code . . . - *

    + * *


      * List lst = new List(4, false);
      * lst.add("Mercury");
    @@ -1082,7 +1082,7 @@ public class List extends Component implements ItemSelectable, Accessible {
          * This method is not called unless item events are
          * enabled for this component. Item events are enabled
          * when one of the following occurs:
    -     * 

      + *
        *
      • An ItemListener object is registered * via addItemListener. *
      • Item events are enabled via enableEvents. @@ -1113,7 +1113,7 @@ public class List extends Component implements ItemSelectable, Accessible { * This method is not called unless action events are * enabled for this component. Action events are enabled * when one of the following occurs: - *

          + *
            *
          • An ActionListener object is registered * via addActionListener. *
          • Action events are enabled via enableEvents. diff --git a/jdk/src/share/classes/java/awt/MenuItem.java b/jdk/src/share/classes/java/awt/MenuItem.java index b660e20d96d..134469106a7 100644 --- a/jdk/src/share/classes/java/awt/MenuItem.java +++ b/jdk/src/share/classes/java/awt/MenuItem.java @@ -648,7 +648,7 @@ public class MenuItem extends MenuComponent implements Accessible { * This method is not called unless action events are * enabled for this component. Action events are enabled * when one of the following occurs: - *

              + *
                *
              • An ActionListener object is registered * via addActionListener. *
              • Action events are enabled via enableEvents. diff --git a/jdk/src/share/classes/java/awt/RadialGradientPaint.java b/jdk/src/share/classes/java/awt/RadialGradientPaint.java index 5fd08734f14..9f569f4f023 100644 --- a/jdk/src/share/classes/java/awt/RadialGradientPaint.java +++ b/jdk/src/share/classes/java/awt/RadialGradientPaint.java @@ -104,7 +104,6 @@ import java.beans.ConstructorProperties; * The following code demonstrates typical usage of * {@code RadialGradientPaint}, where the center and focus points are * the same: - *

                *

                  *     Point2D center = new Point2D.Float(50, 50);
                  *     float radius = 25;
                @@ -117,7 +116,6 @@ import java.beans.ConstructorProperties;
                  * 

                * This image demonstrates the example code above, with default * (centered) focus for each of the three cycle methods: - *

                *

                * image showing the
  * output of the sameple code @@ -126,7 +124,6 @@ import java.beans.ConstructorProperties; *

                * It is also possible to specify a non-centered focus point, as * in the following code: - *

                *

                  *     Point2D center = new Point2D.Float(50, 50);
                  *     float radius = 25;
                @@ -142,7 +139,6 @@ import java.beans.ConstructorProperties;
                  * 

                * This image demonstrates the previous example code, with non-centered * focus for each of the three cycle methods: - *

                *

                * image showing the
  * output of the sample code diff --git a/jdk/src/share/classes/java/awt/Scrollbar.java b/jdk/src/share/classes/java/awt/Scrollbar.java index 9849480719d..0c980b3bf4b 100644 --- a/jdk/src/share/classes/java/awt/Scrollbar.java +++ b/jdk/src/share/classes/java/awt/Scrollbar.java @@ -46,7 +46,7 @@ import javax.accessibility.*; *

                * Each scroll bar in this example could be created with * code similar to the following: - *

                + * *


                  * redSlider=new Scrollbar(Scrollbar.VERTICAL, 0, 1, 0, 255);
                  * add(redSlider);
                @@ -65,7 +65,7 @@ import javax.accessibility.*;
                  * The value range represented by the bubble in this example
                  * is the visible amount. The horizontal scroll bar
                  * in this example could be created with code like the following:
                - * 

                + * *


                  * ranger = new Scrollbar(Scrollbar.HORIZONTAL, 0, 60, 0, 300);
                  * add(ranger);
                @@ -103,7 +103,7 @@ import javax.accessibility.*;
                  * 

                * The AdjustmentEvent class defines five types * of adjustment event, listed here: - *

                + * *

                  *
                • AdjustmentEvent.TRACK is sent out when the * user drags the scroll bar's bubble. @@ -136,7 +136,7 @@ import javax.accessibility.*; * that are associated with scroll bars in previous platform versions. * The following list gives the adjustment event type, * and the corresponding JDK 1.0 event type it replaces. - *

                  + * *

                    *
                  • AdjustmentEvent.TRACK replaces * Event.SCROLL_ABSOLUTE @@ -295,7 +295,7 @@ public class Scrollbar extends Component implements Adjustable, Accessible { * Constructs a new vertical scroll bar. * The default properties of the scroll bar are listed in * the following table: - *

                    + * * * * @@ -1104,11 +1104,11 @@ public class Scrollbar extends Component implements Adjustable, Accessible { * This method is not called unless adjustment events are * enabled for this component. Adjustment events are enabled * when one of the following occurs: - *

                      + *
                        *
                      • An AdjustmentListener object is registered * via addAdjustmentListener. *
                      • Adjustment events are enabled via enableEvents. - *

                      + *

                    *

                    Note that if the event parameter is null * the behavior is unspecified and may result in an * exception. diff --git a/jdk/src/share/classes/java/awt/SystemColor.java b/jdk/src/share/classes/java/awt/SystemColor.java index 931cf326fb5..ed5a26b4947 100644 --- a/jdk/src/share/classes/java/awt/SystemColor.java +++ b/jdk/src/share/classes/java/awt/SystemColor.java @@ -463,7 +463,7 @@ public final class SystemColor extends Color implements java.io.Serializable { } /** - * Called from & toolkit to update the above systemColors cache. + * Called from {@code } and toolkit to update the above systemColors cache. */ private static void updateSystemColors() { if (!GraphicsEnvironment.isHeadless()) { diff --git a/jdk/src/share/classes/java/awt/SystemTray.java b/jdk/src/share/classes/java/awt/SystemTray.java index 20ba912870c..58f3a0b2686 100644 --- a/jdk/src/share/classes/java/awt/SystemTray.java +++ b/jdk/src/share/classes/java/awt/SystemTray.java @@ -361,7 +361,7 @@ public class SystemTray { /** * Adds a {@code PropertyChangeListener} to the list of listeners for the * specific property. The following properties are currently supported: - *

                    + * *

                    Property
                    * * diff --git a/jdk/src/share/classes/java/awt/TextArea.java b/jdk/src/share/classes/java/awt/TextArea.java index 6fc979f2835..0528c0addfe 100644 --- a/jdk/src/share/classes/java/awt/TextArea.java +++ b/jdk/src/share/classes/java/awt/TextArea.java @@ -45,7 +45,7 @@ import javax.accessibility.*; * style="float:center; margin: 7px 10px;"> *

                    * This text area could be created by the following line of code: - *

                    + * *


                      * new TextArea("Hello", 5, 40);
                      * 

                    diff --git a/jdk/src/share/classes/java/awt/TextField.java b/jdk/src/share/classes/java/awt/TextField.java index 85eaba2d17b..e7088218180 100644 --- a/jdk/src/share/classes/java/awt/TextField.java +++ b/jdk/src/share/classes/java/awt/TextField.java @@ -45,7 +45,7 @@ import javax.accessibility.*; * style="float:center; margin: 7px 10px;"> *

                    * Here is the code that produces these four text fields: - *

                    + * *


                      * TextField tf1, tf2, tf3, tf4;
                      * // a blank text field
                    @@ -596,7 +596,7 @@ public class TextField extends TextComponent {
                          * This method is not called unless action events are
                          * enabled for this component. Action events are enabled
                          * when one of the following occurs:
                    -     * 

                      + *
                        *
                      • An ActionListener object is registered * via addActionListener. *
                      • Action events are enabled via enableEvents. diff --git a/jdk/src/share/classes/java/awt/Toolkit.java b/jdk/src/share/classes/java/awt/Toolkit.java index dcc1fa15b4e..e1f86f22e53 100644 --- a/jdk/src/share/classes/java/awt/Toolkit.java +++ b/jdk/src/share/classes/java/awt/Toolkit.java @@ -80,19 +80,19 @@ import sun.util.CoreResourceBundleControl; *
                        For example, calling ScrollPane.setScrollPosition * and then getScrollPosition may return an incorrect * value if the original request has not yet been processed. - *

                        + * *

                      • Moving the focus from one component to another. *
                        For more information, see * Timing * Focus Transfers, a section in * The Swing * Tutorial. - *

                        + * *

                      • Making a top-level container visible. *
                        Calling setVisible(true) on a Window, * Frame or Dialog may occur * asynchronously. - *

                        + * *

                      • Setting the size or location of a top-level container. *
                        Calls to setSize, setBounds or * setLocation on a Window, diff --git a/jdk/src/share/classes/java/awt/WaitDispatchSupport.java b/jdk/src/share/classes/java/awt/WaitDispatchSupport.java index c9a671838a9..ac59d77855c 100644 --- a/jdk/src/share/classes/java/awt/WaitDispatchSupport.java +++ b/jdk/src/share/classes/java/awt/WaitDispatchSupport.java @@ -91,7 +91,7 @@ class WaitDispatchSupport implements SecondaryLoop { * * @param dispatchThread An event dispatch thread that * should not stop dispatching events while waiting - * @param extCondition A conditional object used to determine + * @param extCond A conditional object used to determine * if the loop should be terminated * * @since 1.7 @@ -161,7 +161,7 @@ class WaitDispatchSupport implements SecondaryLoop { } /** - * @inheritDoc + * {@inheritDoc} */ @Override public boolean enter() { @@ -281,7 +281,7 @@ class WaitDispatchSupport implements SecondaryLoop { } /** - * @inheritDoc + * {@inheritDoc} */ public boolean exit() { if (log.isLoggable(PlatformLogger.Level.FINE)) { diff --git a/jdk/src/share/classes/java/awt/Window.java b/jdk/src/share/classes/java/awt/Window.java index ceb901a3c4b..13779fd4129 100644 --- a/jdk/src/share/classes/java/awt/Window.java +++ b/jdk/src/share/classes/java/awt/Window.java @@ -212,7 +212,7 @@ public class Window extends Container implements Accessible { * * @serial * @see #getIconImages - * @see #setIconImages(List) + * @see #setIconImages */ transient java.util.List icons; diff --git a/jdk/src/share/classes/java/awt/color/CMMException.java b/jdk/src/share/classes/java/awt/color/CMMException.java index 9aca938a307..04497f69cc4 100644 --- a/jdk/src/share/classes/java/awt/color/CMMException.java +++ b/jdk/src/share/classes/java/awt/color/CMMException.java @@ -27,7 +27,8 @@ * */ -/********************************************************************** +/* + ********************************************************************** ********************************************************************** ********************************************************************** *** COPYRIGHT (c) Eastman Kodak Company, 1997 *** diff --git a/jdk/src/share/classes/java/awt/color/ColorSpace.java b/jdk/src/share/classes/java/awt/color/ColorSpace.java index c0bcb4938c3..ac21273d415 100644 --- a/jdk/src/share/classes/java/awt/color/ColorSpace.java +++ b/jdk/src/share/classes/java/awt/color/ColorSpace.java @@ -23,7 +23,8 @@ * questions. */ -/********************************************************************** +/* + ********************************************************************** ********************************************************************** ********************************************************************** *** COPYRIGHT (c) Eastman Kodak Company, 1997 *** @@ -91,7 +92,6 @@ import sun.java2d.cmm.CMSManager;
                    * - *

                    * @see ICC_ColorSpace */ diff --git a/jdk/src/share/classes/java/awt/color/ICC_ColorSpace.java b/jdk/src/share/classes/java/awt/color/ICC_ColorSpace.java index ace7f3db3a9..53edefb5992 100644 --- a/jdk/src/share/classes/java/awt/color/ICC_ColorSpace.java +++ b/jdk/src/share/classes/java/awt/color/ICC_ColorSpace.java @@ -23,7 +23,8 @@ * questions. */ -/********************************************************************** +/* + ********************************************************************** ********************************************************************** ********************************************************************** *** COPYRIGHT (c) Eastman Kodak Company, 1997 *** @@ -77,7 +78,6 @@ import sun.java2d.cmm.PCMM; * imported images with a known color space. At most, such applets * would need to get one of the default color spaces via * ColorSpace.getInstance(). - *

                    * @see ColorSpace * @see ICC_Profile */ @@ -481,7 +481,6 @@ public class ICC_ColorSpace extends ColorSpace { * be the same as the media white point tag XYZ value in the ICC * profile for an sRGB device. *

                    - *

                    * @param colorvalue a float array with length of at least 3. * @return a float array with length equal to the number of * components in this ColorSpace. diff --git a/jdk/src/share/classes/java/awt/color/ICC_Profile.java b/jdk/src/share/classes/java/awt/color/ICC_Profile.java index 7e44947477d..89abeca03d6 100644 --- a/jdk/src/share/classes/java/awt/color/ICC_Profile.java +++ b/jdk/src/share/classes/java/awt/color/ICC_Profile.java @@ -23,7 +23,8 @@ * questions. */ -/********************************************************************** +/* + ********************************************************************** ********************************************************************** ********************************************************************** *** COPYRIGHT (c) Eastman Kodak Company, 1997 *** @@ -86,7 +87,6 @@ import java.security.PrivilegedAction; * ICC Profile Format Specification. Most profiles of interest * either have invertible transformations or explicitly specify * transformations going both directions. - *

                    * @see ICC_ColorSpace */ diff --git a/jdk/src/share/classes/java/awt/color/ICC_ProfileGray.java b/jdk/src/share/classes/java/awt/color/ICC_ProfileGray.java index a868a6f50fc..1b076a6f81a 100644 --- a/jdk/src/share/classes/java/awt/color/ICC_ProfileGray.java +++ b/jdk/src/share/classes/java/awt/color/ICC_ProfileGray.java @@ -23,7 +23,8 @@ * questions. */ -/********************************************************************** +/* + ********************************************************************** ********************************************************************** ********************************************************************** *** COPYRIGHT (c) Eastman Kodak Company, 1997 *** @@ -63,7 +64,6 @@ import sun.java2d.cmm.ProfileDeferralInfo; * The inverse transform is done by converting the PCS Y components to * device Gray via the inverse of the grayTRC. - *

                    */ diff --git a/jdk/src/share/classes/java/awt/color/ICC_ProfileRGB.java b/jdk/src/share/classes/java/awt/color/ICC_ProfileRGB.java index dcf65828650..c26697a85d4 100644 --- a/jdk/src/share/classes/java/awt/color/ICC_ProfileRGB.java +++ b/jdk/src/share/classes/java/awt/color/ICC_ProfileRGB.java @@ -23,7 +23,8 @@ * questions. */ -/********************************************************************** +/* + ********************************************************************** ********************************************************************** ********************************************************************** *** COPYRIGHT (c) Eastman Kodak Company, 1997 *** @@ -82,7 +83,6 @@ import sun.java2d.cmm.ProfileDeferralInfo; * The inverse transform is performed by converting PCS XYZ components to linear * RGB components through the inverse of the above 3x3 matrix, and then converting * linear RGB to device RGB through inverses of the TRCs. - *

                    */ @@ -111,7 +111,7 @@ extends ICC_Profile { /** * Constructs an new ICC_ProfileRGB from a CMM ID. * - * @param ID The CMM ID for the profile. + * @param p The CMM ID for the profile. * */ ICC_ProfileRGB(Profile p) { diff --git a/jdk/src/share/classes/java/awt/dnd/DnDEventMulticaster.java b/jdk/src/share/classes/java/awt/dnd/DnDEventMulticaster.java index 2e6c13a0551..a9d9e6587ff 100644 --- a/jdk/src/share/classes/java/awt/dnd/DnDEventMulticaster.java +++ b/jdk/src/share/classes/java/awt/dnd/DnDEventMulticaster.java @@ -71,7 +71,7 @@ class DnDEventMulticaster extends AWTEventMulticaster * Handles the DragSourceDragEvent by invoking * dragOver on listener-a and listener-b. * - * @param e the DragSourceDragEvent + * @param dsde the DragSourceDragEvent */ public void dragOver(DragSourceDragEvent dsde) { ((DragSourceListener)a).dragOver(dsde); diff --git a/jdk/src/share/classes/java/awt/dnd/DragSourceDropEvent.java b/jdk/src/share/classes/java/awt/dnd/DragSourceDropEvent.java index e1116bc68d5..25f7630dd76 100644 --- a/jdk/src/share/classes/java/awt/dnd/DragSourceDropEvent.java +++ b/jdk/src/share/classes/java/awt/dnd/DragSourceDropEvent.java @@ -37,7 +37,6 @@ package java.awt.dnd; * to provide appropriate feedback to the end user * when the operation completes. *

                    - *

                    * @since 1.2 */ diff --git a/jdk/src/share/classes/java/awt/dnd/DropTarget.java b/jdk/src/share/classes/java/awt/dnd/DropTarget.java index 0480ba5f67e..ad672936078 100644 --- a/jdk/src/share/classes/java/awt/dnd/DropTarget.java +++ b/jdk/src/share/classes/java/awt/dnd/DropTarget.java @@ -197,7 +197,7 @@ public class DropTarget implements DropTargetListener, Serializable { *

                    * The Component will receive drops only if it is enabled. * @param c The new Component this DropTarget - * is to be associated with.

                    + * is to be associated with. */ public synchronized void setComponent(Component c) { @@ -246,7 +246,6 @@ public class DropTarget implements DropTargetListener, Serializable { * Sets the default acceptable actions for this DropTarget *

                    * @param ops the default actions - *

                    * @see java.awt.dnd.DnDConstants */ diff --git a/jdk/src/share/classes/java/awt/event/MouseAdapter.java b/jdk/src/share/classes/java/awt/event/MouseAdapter.java index b908a6626df..dfc16d9c8be 100644 --- a/jdk/src/share/classes/java/awt/event/MouseAdapter.java +++ b/jdk/src/share/classes/java/awt/event/MouseAdapter.java @@ -49,7 +49,7 @@ package java.awt.event; * methods. * The relevant method in the listener object is invoked and the {@code MouseEvent} * or {@code MouseWheelEvent} is passed to it in following cases: - *

                      + *
                        *
                      • when a mouse button is pressed, released, or clicked (pressed and released) *
                      • when the mouse cursor enters or exits the component *
                      • when the mouse wheel rotated, or mouse moved or dragged diff --git a/jdk/src/share/classes/java/awt/font/FontRenderContext.java b/jdk/src/share/classes/java/awt/font/FontRenderContext.java index f9f5f1eec79..240ea895320 100644 --- a/jdk/src/share/classes/java/awt/font/FontRenderContext.java +++ b/jdk/src/share/classes/java/awt/font/FontRenderContext.java @@ -57,7 +57,6 @@ import java.awt.geom.AffineTransform; * FontRenderContext which is directly constructed will * most likely not represent any actual graphics device, and may lead * to unexpected or incorrect results. -*

                        * @see java.awt.RenderingHints#KEY_TEXT_ANTIALIASING * @see java.awt.RenderingHints#KEY_FRACTIONALMETRICS * @see java.awt.Graphics2D#getFontRenderContext() diff --git a/jdk/src/share/classes/java/awt/font/StyledParagraph.java b/jdk/src/share/classes/java/awt/font/StyledParagraph.java index df231bf5300..e0447dfcf3b 100644 --- a/jdk/src/share/classes/java/awt/font/StyledParagraph.java +++ b/jdk/src/share/classes/java/awt/font/StyledParagraph.java @@ -322,7 +322,7 @@ final class StyledParagraph { } /** - * Return i such that starts[i] <= index < starts[i+1]. starts + * Return i such that starts[i] <= index < starts[i+1]. starts * must be in increasing order, with at least one element greater * than index. */ diff --git a/jdk/src/share/classes/java/awt/geom/AffineTransform.java b/jdk/src/share/classes/java/awt/geom/AffineTransform.java index d3c27ffa87e..494e3c8e31f 100644 --- a/jdk/src/share/classes/java/awt/geom/AffineTransform.java +++ b/jdk/src/share/classes/java/awt/geom/AffineTransform.java @@ -46,8 +46,7 @@ import java.beans.ConstructorProperties; * [ y'] = [ m10 m11 m12 ] [ y ] = [ m10x + m11y + m12 ] * [ 1 ] [ 0 0 1 ] [ 1 ] [ 1 ] * - *

                        - *

                        Handling 90-Degree Rotations

                        + *

                        Handling 90-Degree Rotations

                        *

                        * In some variations of the rotate methods in the * AffineTransform class, a double-precision argument diff --git a/jdk/src/share/classes/java/awt/geom/QuadCurve2D.java b/jdk/src/share/classes/java/awt/geom/QuadCurve2D.java index a2c41d91fae..56d435f0f5d 100644 --- a/jdk/src/share/classes/java/awt/geom/QuadCurve2D.java +++ b/jdk/src/share/classes/java/awt/geom/QuadCurve2D.java @@ -1047,7 +1047,7 @@ public abstract class QuadCurve2D implements Shape, Cloneable { /** * Evaluate the t values in the first num slots of the vals[] array * and place the evaluated values back into the same array. Only - * evaluate t values that are within the range <0, 1>, including + * evaluate t values that are within the range <0, 1>, including * the 0 and 1 ends of the range iff the include0 or include1 * booleans are true. If an "inflection" equation is handed in, * then any points which represent a point of inflection for that @@ -1081,7 +1081,7 @@ public abstract class QuadCurve2D implements Shape, Cloneable { /** * Determine where coord lies with respect to the range from - * low to high. It is assumed that low <= high. The return + * low to high. It is assumed that low <= high. The return * value is one of the 5 values BELOW, LOWEDGE, INSIDE, HIGHEDGE, * or ABOVE. */ diff --git a/jdk/src/share/classes/java/awt/image/BufferStrategy.java b/jdk/src/share/classes/java/awt/image/BufferStrategy.java index 7a4f793b791..1bd882c1573 100644 --- a/jdk/src/share/classes/java/awt/image/BufferStrategy.java +++ b/jdk/src/share/classes/java/awt/image/BufferStrategy.java @@ -54,7 +54,6 @@ import java.awt.Image; *

                        * Alternatively, the contents of the back buffer can be copied, or * blitted forward in a chain instead of moving the video pointer. - *

                        *

                        {@code
                          * Double buffering:
                          *
                        diff --git a/jdk/src/share/classes/java/awt/image/BufferedImage.java b/jdk/src/share/classes/java/awt/image/BufferedImage.java
                        index 811c209a983..df968838d7c 100644
                        --- a/jdk/src/share/classes/java/awt/image/BufferedImage.java
                        +++ b/jdk/src/share/classes/java/awt/image/BufferedImage.java
                        @@ -927,7 +927,6 @@ public class BufferedImage extends java.awt.Image
                              * each color component in the returned data when
                              * using this method.  With a specified coordinate (x, y) in the
                              * image, the ARGB pixel can be accessed in this way:
                        -     * 

                        * *

                              *    pixel   = rgbArray[offset + (y-startY)*scansize + (x-startX)]; 
                        diff --git a/jdk/src/share/classes/java/awt/image/ColorConvertOp.java b/jdk/src/share/classes/java/awt/image/ColorConvertOp.java index 7ba11582be9..712eae48269 100644 --- a/jdk/src/share/classes/java/awt/image/ColorConvertOp.java +++ b/jdk/src/share/classes/java/awt/image/ColorConvertOp.java @@ -23,7 +23,8 @@ * questions. */ -/********************************************************************** +/* + ********************************************************************** ********************************************************************** ********************************************************************** *** COPYRIGHT (c) Eastman Kodak Company, 1997 *** @@ -64,7 +65,6 @@ import java.awt.RenderingHints; * color conversion. *

                        * Note that Source and Destination may be the same object. - *

                        * @see java.awt.RenderingHints#KEY_COLOR_RENDERING * @see java.awt.RenderingHints#KEY_DITHERING */ diff --git a/jdk/src/share/classes/java/awt/peer/CheckboxPeer.java b/jdk/src/share/classes/java/awt/peer/CheckboxPeer.java index fb4c4e6608a..abdbec9fa68 100644 --- a/jdk/src/share/classes/java/awt/peer/CheckboxPeer.java +++ b/jdk/src/share/classes/java/awt/peer/CheckboxPeer.java @@ -41,7 +41,7 @@ public interface CheckboxPeer extends ComponentPeer { * Sets the state of the checkbox to be checked ({@code true}) or * unchecked ({@code false}). * - * @param t the state to set on the checkbox + * @param state the state to set on the checkbox * * @see Checkbox#setState(boolean) */ diff --git a/jdk/src/share/classes/java/awt/peer/DesktopPeer.java b/jdk/src/share/classes/java/awt/peer/DesktopPeer.java index 72a87eccea8..48603d6c517 100644 --- a/jdk/src/share/classes/java/awt/peer/DesktopPeer.java +++ b/jdk/src/share/classes/java/awt/peer/DesktopPeer.java @@ -87,7 +87,7 @@ public interface DesktopPeer { * filling the message fields including to, cc, etc, with the values * specified by the given mailto URL. * - * @param uri represents a mailto URL with specified values of the message. + * @param mailtoURL represents a mailto URL with specified values of the message. * The syntax of mailto URL is defined by * RFC2368: The mailto * URL scheme @@ -103,5 +103,5 @@ public interface DesktopPeer { * @throws IOException If the user default browser is not found, * or it fails to be launched. */ - void browse(URI url) throws IOException; + void browse(URI uri) throws IOException; }

                    Property