OpenJDK / jdk / hs
changeset 20169:d7fa6d7586c9
8025085: [javadoc] some errors in javax/swing
Reviewed-by: alexsch
Contributed-by: Dmitry Zinkevich <dmitry.zinkevich@oracle.com>
line wrap: on
line diff
--- a/jdk/src/share/classes/javax/swing/JButton.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/JButton.java Wed Sep 25 17:35:22 2013 +0400 @@ -149,7 +149,7 @@ /** - * Returns a string that specifies the name of the L&F class + * Returns a string that specifies the name of the L&F class * that renders this component. * * @return the string "ButtonUI" @@ -157,7 +157,7 @@ * @see UIDefaults#getUI * @beaninfo * expert: true - * description: A string that specifies the name of the L&F class. + * description: A string that specifies the name of the L&F class. */ public String getUIClassID() { return uiClassID;
--- a/jdk/src/share/classes/javax/swing/JCheckBox.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/JCheckBox.java Wed Sep 25 17:35:22 2013 +0400 @@ -230,7 +230,7 @@ /** - * Returns a string that specifies the name of the L&F class + * Returns a string that specifies the name of the L&F class * that renders this component. * * @return the string "CheckBoxUI" @@ -238,7 +238,7 @@ * @see UIDefaults#getUI * @beaninfo * expert: true - * description: A string that specifies the name of the L&F class + * description: A string that specifies the name of the L&F class */ public String getUIClassID() { return uiClassID;
--- a/jdk/src/share/classes/javax/swing/JCheckBoxMenuItem.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/JCheckBoxMenuItem.java Wed Sep 25 17:35:22 2013 +0400 @@ -168,7 +168,7 @@ } /** - * Returns the name of the L&F class + * Returns the name of the L&F class * that renders this component. * * @return "CheckBoxMenuItemUI"
--- a/jdk/src/share/classes/javax/swing/JColorChooser.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/JColorChooser.java Wed Sep 25 17:35:22 2013 +0400 @@ -216,7 +216,7 @@ } /** - * Returns the L&F object that renders this component. + * Returns the L&F object that renders this component. * * @return the <code>ColorChooserUI</code> object that renders * this component @@ -226,9 +226,9 @@ } /** - * Sets the L&F object that renders this component. + * Sets the L&F object that renders this component. * - * @param ui the <code>ColorChooserUI</code> L&F object + * @param ui the <code>ColorChooserUI</code> L&F object * @see UIDefaults#getUI * * @beaninfo @@ -241,7 +241,7 @@ } /** - * Notification from the <code>UIManager</code> that the L&F has changed. + * Notification from the <code>UIManager</code> that the L&F has changed. * Replaces the current UI object with the latest version from the * <code>UIManager</code>. * @@ -252,7 +252,7 @@ } /** - * Returns the name of the L&F class that renders this component. + * Returns the name of the L&F class that renders this component. * * @return the string "ColorChooserUI" * @see JComponent#getUIClassID
--- a/jdk/src/share/classes/javax/swing/JComboBox.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/JComboBox.java Wed Sep 25 17:35:22 2013 +0400 @@ -242,9 +242,9 @@ } /** - * Sets the L&F object that renders this component. + * Sets the L&F object that renders this component. * - * @param ui the <code>ComboBoxUI</code> L&F object + * @param ui the <code>ComboBoxUI</code> L&F object * @see UIDefaults#getUI * * @beaninfo @@ -273,7 +273,7 @@ /** - * Returns the name of the L&F class that renders this component. + * Returns the name of the L&F class that renders this component. * * @return the string "ComboBoxUI" * @see JComponent#getUIClassID @@ -285,7 +285,7 @@ /** - * Returns the L&F object that renders this component. + * Returns the L&F object that renders this component. * * @return the ComboBoxUI object that renders this component */ @@ -607,7 +607,7 @@ * * @param anIndex an integer specifying the list item to select, * where 0 specifies the first item in the list and -1 indicates no selection - * @exception IllegalArgumentException if <code>anIndex</code> < -1 or + * @exception IllegalArgumentException if <code>anIndex</code> < -1 or * <code>anIndex</code> is greater than or equal to size * @beaninfo * preferred: true
--- a/jdk/src/share/classes/javax/swing/JComponent.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/JComponent.java Wed Sep 25 17:35:22 2013 +0400 @@ -86,7 +86,7 @@ * <ul> * <li>The base class for both standard and custom components * that use the Swing architecture. - * <li>A "pluggable look and feel" (L&F) that can be specified by the + * <li>A "pluggable look and feel" (L&F) that can be specified by the * programmer or (optionally) selected by the user at runtime. * The look and feel for each component is provided by a * <em>UI delegate</em> -- an object that descends from @@ -4523,7 +4523,7 @@ * @param propertyName the name of the property that was listened on * @param oldValue the old value of the property * @param newValue the new value of the property - * @exception PropertyVetoException when the attempt to set the + * @exception java.beans.PropertyVetoException when the attempt to set the * property is vetoed by the component */ protected void fireVetoableChange(String propertyName, Object oldValue, Object newValue)
--- a/jdk/src/share/classes/javax/swing/JDesktopPane.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/JDesktopPane.java Wed Sep 25 17:35:22 2013 +0400 @@ -50,13 +50,13 @@ * <code>JLayeredPane</code> to manage the potentially overlapping internal * frames. It also maintains a reference to an instance of * <code>DesktopManager</code> that is set by the UI - * class for the current look and feel (L&F). Note that <code>JDesktopPane</code> + * class for the current look and feel (L&F). Note that <code>JDesktopPane</code> * does not support borders. * <p> * This class is normally used as the parent of <code>JInternalFrames</code> * to provide a pluggable <code>DesktopManager</code> object to the * <code>JInternalFrames</code>. The <code>installUI</code> of the - * L&F specific implementation is responsible for setting the + * L&F specific implementation is responsible for setting the * <code>desktopManager</code> variable appropriately. * When the parent of a <code>JInternalFrame</code> is a <code>JDesktopPane</code>, * it should delegate most of its behavior to the <code>desktopManager</code> @@ -146,7 +146,7 @@ } /** - * Returns the L&F object that renders this component. + * Returns the L&F object that renders this component. * * @return the <code>DesktopPaneUI</code> object that * renders this component @@ -156,9 +156,9 @@ } /** - * Sets the L&F object that renders this component. + * Sets the L&F object that renders this component. * - * @param ui the DesktopPaneUI L&F object + * @param ui the DesktopPaneUI L&F object * @see UIDefaults#getUI * @beaninfo * bound: true @@ -232,7 +232,7 @@ } /** - * Notification from the <code>UIManager</code> that the L&F has changed. + * Notification from the <code>UIManager</code> that the L&F has changed. * Replaces the current UI object with the latest version from the * <code>UIManager</code>. * @@ -244,7 +244,7 @@ /** - * Returns the name of the L&F class that renders this component. + * Returns the name of the L&F class that renders this component. * * @return the string "DesktopPaneUI" * @see JComponent#getUIClassID
--- a/jdk/src/share/classes/javax/swing/JMenuItem.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/JMenuItem.java Wed Sep 25 17:35:22 2013 +0400 @@ -229,7 +229,7 @@ /** * Sets the look and feel object that renders this component. * - * @param ui the <code>JMenuItemUI</code> L&F object + * @param ui the <code>JMenuItemUI</code> L&F object * @see UIDefaults#getUI * @beaninfo * bound: true @@ -252,7 +252,7 @@ /** - * Returns the suffix used to construct the name of the L&F class used to + * Returns the suffix used to construct the name of the L&F class used to * render this component. * * @return the string "MenuItemUI"
--- a/jdk/src/share/classes/javax/swing/JToggleButton.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/JToggleButton.java Wed Sep 25 17:35:22 2013 +0400 @@ -186,14 +186,14 @@ } /** - * Returns a string that specifies the name of the l&f class + * Returns a string that specifies the name of the l&f class * that renders this component. * * @return String "ToggleButtonUI" * @see JComponent#getUIClassID * @see UIDefaults#getUI * @beaninfo - * description: A string that specifies the name of the L&F class + * description: A string that specifies the name of the L&F class */ public String getUIClassID() { return uiClassID;
--- a/jdk/src/share/classes/javax/swing/SpinnerDateModel.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/SpinnerDateModel.java Wed Sep 25 17:35:22 2013 +0400 @@ -221,7 +221,7 @@ * MyStartDate implements Comparable { * long t = 12345; * public int compareTo(Date d) { - * return (t < d.getTime() ? -1 : (t == d.getTime() ? 0 : 1)); + * return (t < d.getTime() ? -1 : (t == d.getTime() ? 0 : 1)); * } * public int compareTo(Object o) { * return compareTo((Date)o); @@ -435,7 +435,7 @@ * If <code>value</code> is <code>null</code>, * an <code>IllegalArgumentException</code> is thrown. No bounds * checking is done here: - * the new value may invalidate the <code>(start <= value < end)</code> + * the new value may invalidate the <code>(start <= value < end)</code> * invariant enforced by the constructors. Naturally, one should ensure * that the <code>(start <= value <= maximum)</code> invariant is true * before calling the <code>nextValue</code>, <code>previousValue</code>,
--- a/jdk/src/share/classes/javax/swing/SpinnerListModel.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/SpinnerListModel.java Wed Sep 25 17:35:22 2013 +0400 @@ -71,7 +71,7 @@ * size, an <code>IllegalArugmentException</code> is thrown. * * @param values the sequence this model represents - * @throws IllegalArugmentException if <code>values</code> is + * @throws IllegalArgumentException if <code>values</code> is * <code>null</code> or zero size */ public SpinnerListModel(List<?> values) { @@ -88,10 +88,10 @@ * is defined by the specified array. The initial value of the model * will be <code>values[0]</code>. If <code>values</code> is * <code>null</code> or has zero length, an - * <code>IllegalArugmentException</code> is thrown. + * <code>IllegalArgumentException</code> is thrown. * * @param values the sequence this model represents - * @throws IllegalArugmentException if <code>values</code> is + * @throws IllegalArgumentException if <code>values</code> is * <code>null</code> or zero length */ public SpinnerListModel(Object[] values) {
--- a/jdk/src/share/classes/javax/swing/SpinnerNumberModel.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/SpinnerNumberModel.java Wed Sep 25 17:35:22 2013 +0400 @@ -180,7 +180,7 @@ * If <code>minimum</code> is <code>null</code>, * then there is no lower bound. No bounds checking is done here; * the new <code>minimum</code> value may invalidate the - * <code>(minimum <= value <= maximum)</code> + * <code>(minimum <= value <= maximum)</code> * invariant enforced by the constructors. This is to simplify updating * the model, naturally one should ensure that the invariant is true * before calling the <code>getNextValue</code>, @@ -196,7 +196,7 @@ * MyDate extends Date { // Date already implements Comparable * public int compareTo(Long o) { * long t = getTime(); - * return (t < o.longValue() ? -1 : (t == o.longValue() ? 0 : 1)); + * return (t < o.longValue() ? -1 : (t == o.longValue() ? 0 : 1)); * } * } * </pre> @@ -235,7 +235,7 @@ * If <code>maximum</code> is <code>null</code>, then there * is no upper bound. No bounds checking is done here; the new * <code>maximum</code> value may invalidate the - * <code>(minimum <= value < maximum)</code> + * <code>(minimum <= value < maximum)</code> * invariant enforced by the constructors. This is to simplify updating * the model, naturally one should ensure that the invariant is true * before calling the <code>next</code>, <code>previous</code>,
--- a/jdk/src/share/classes/javax/swing/SpringLayout.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/SpringLayout.java Wed Sep 25 17:35:22 2013 +0400 @@ -727,7 +727,7 @@ * For any other <code>String</code> value passed as the edge, * no action is taken. For a <code>null</code> edge, a * <code>NullPointerException</code> is thrown. - * <p/> + * <p> * <b>Note:</b> This method can affect {@code x} and {@code y} values * previously set for this {@code Constraints}. *
--- a/jdk/src/share/classes/javax/swing/TransferHandler.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/TransferHandler.java Wed Sep 25 17:35:22 2013 +0400 @@ -502,7 +502,7 @@ * the action with the source drop actions, and then compare the result * against the original action. For example: * <pre> - * boolean copySupported = (COPY & getSourceDropActions()) == COPY; + * boolean copySupported = (COPY & getSourceDropActions()) == COPY; * </pre> * <p> * This method is only for use with drag and drop transfers.
--- a/jdk/src/share/classes/javax/swing/UIDefaults.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/UIDefaults.java Wed Sep 25 17:35:22 2013 +0400 @@ -706,7 +706,7 @@ /** - * Returns the L&F class that renders this component. + * Returns the L&F class that renders this component. * * @param uiClassID a string containing the class ID * @return the Class object returned by
--- a/jdk/src/share/classes/javax/swing/UnsupportedLookAndFeelException.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/UnsupportedLookAndFeelException.java Wed Sep 25 17:35:22 2013 +0400 @@ -25,7 +25,7 @@ package javax.swing; /** - * An exception that indicates the requested look & feel + * An exception that indicates the requested look & feel * management classes are not present on the user's system. * <p> * <strong>Warning:</strong>
--- a/jdk/src/share/classes/javax/swing/ViewportLayout.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/ViewportLayout.java Wed Sep 25 17:35:22 2013 +0400 @@ -25,6 +25,7 @@ package javax.swing; +import java.awt.AWTError; import java.awt.LayoutManager; import java.awt.Component; import java.awt.Container; @@ -116,7 +117,7 @@ * * @param parent the container to lay out * - * @exception AWTError if the target isn't the container specified to the + * @throws AWTError if the target isn't the container specified to the * <code>BoxLayout</code> constructor */ public void layoutContainer(Container parent)
--- a/jdk/src/share/classes/javax/swing/plaf/LayerUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/LayerUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -35,17 +35,17 @@ /** * The base class for all {@link javax.swing.JLayer}'s UI delegates. - * <p/> + * <p> * {@link #paint(java.awt.Graphics, javax.swing.JComponent)} method performs the * painting of the {@code JLayer} * and {@link #eventDispatched(AWTEvent, JLayer)} method is notified * about any {@code AWTEvent}s which have been generated by a {@code JLayer} * or any of its subcomponents. - * <p/> + * <p> * The {@code LayerUI} differs from the UI delegates of the other components, * because it is LookAndFeel independent and is not updated by default when * the system LookAndFeel is changed. - * <p/> + * <p> * The subclasses of {@code LayerUI} can either be stateless and shareable * by multiple {@code JLayer}s or not shareable. * @@ -69,7 +69,7 @@ * Subclasses should override this method and use * the specified {@code Graphics} object to * render the content of the component. - * <p/> + * <p> * The default implementation paints the passed component as is. * * @param g the {@code Graphics} context in which to paint @@ -82,7 +82,7 @@ /** * Processes {@code AWTEvent}s for {@code JLayer} * and <b>all its descendants</b> to this {@code LayerUI} instance. - * <p/> + * <p> * To enable the {@code AWTEvent}s of a particular type, * you call {@link JLayer#setLayerEventMask} * in {@link #installUI(javax.swing.JComponent)} @@ -91,7 +91,7 @@ * By default this method calls the appropriate * {@code process<event type>Event} * method for the given class of event. - * <p/> + * <p> * <b>Note:</b> Events are processed only for displayable {@code JLayer}s. * * @param e the event to be dispatched @@ -151,7 +151,7 @@ /** * Processes component events occurring on the {@link JLayer} * or any of its subcomponents. - * <p/> + * <p> * This method is not called unless component events are * enabled for the {@code JLayer} objects, this {@code LayerUI} is set to. * Component events are enabled in the overridden {@link #installUI} method @@ -183,7 +183,7 @@ /** * Processes focus events occurring on the {@link JLayer} * or any of its subcomponents. - * <p/> + * <p> * This method is not called unless focus events are * enabled for the {@code JLayer} objects, this {@code LayerUI} is set to. * Focus events are enabled in the overridden {@link #installUI} method @@ -215,7 +215,7 @@ /** * Processes key events occurring on the {@link JLayer} * or any of its subcomponents. - * <p/> + * <p> * This method is not called unless key events are * enabled for the {@code JLayer} objects, this {@code LayerUI} is set to. * Key events are enabled in the overridden {@link #installUI} method @@ -247,7 +247,7 @@ /** * Processes mouse events occurring on the {@link JLayer} * or any of its subcomponents. - * <p/> + * <p> * This method is not called unless mouse events are * enabled for the {@code JLayer} objects, this {@code LayerUI} is set to. * Mouse events are enabled in the overridden {@link #installUI} method @@ -279,7 +279,7 @@ /** * Processes mouse motion event occurring on the {@link JLayer} * or any of its subcomponents. - * <p/> + * <p> * This method is not called unless mouse motion events are * enabled for the {@code JLayer} objects, this {@code LayerUI} is set to. * Mouse motion events are enabled in the overridden {@link #installUI} method @@ -311,7 +311,7 @@ /** * Processes mouse wheel event occurring on the {@link JLayer} * or any of its subcomponents. - * <p/> + * <p> * This method is not called unless mouse wheel events are * enabled for the {@code JLayer} objects, this {@code LayerUI} is set to. * Mouse wheel events are enabled in the overridden {@link #installUI} method @@ -343,7 +343,7 @@ /** * Processes input event occurring on the {@link JLayer} * or any of its subcomponents. - * <p/> + * <p> * This method is not called unless input events are * enabled for the {@code JLayer} objects, this {@code LayerUI} is set to. * Input events are enabled in the overridden {@link #installUI} method @@ -375,7 +375,7 @@ /** * Processes hierarchy event occurring on the {@link JLayer} * or any of its subcomponents. - * <p/> + * <p> * This method is not called unless hierarchy events are * enabled for the {@code JLayer} objects, this {@code LayerUI} is set to. * Hierarchy events are enabled in the overridden {@link #installUI} method @@ -407,7 +407,7 @@ /** * Processes hierarchy bounds event occurring on the {@link JLayer} * or any of its subcomponents. - * <p/> + * <p> * This method is not called unless hierarchy bounds events are * enabled for the {@code JLayer} objects, this {@code LayerUI} is set to. * Hierarchy bounds events are enabled in the overridden {@link #installUI} @@ -471,7 +471,7 @@ /** * Adds a PropertyChangeListener to the listener list. The listener is * registered for all bound properties of this class. - * <p/> + * <p> * If {@code listener} is {@code null}, * no exception is thrown and no action is performed. * @@ -488,7 +488,7 @@ * Removes a PropertyChangeListener from the listener list. This method * should be used to remove PropertyChangeListeners that were registered * for all bound properties of this class. - * <p/> + * <p> * If {@code listener} is {@code null}, * no exception is thrown and no action is performed. * @@ -519,7 +519,7 @@ /** * Adds a PropertyChangeListener to the listener list for a specific * property. - * <p/> + * <p> * If {@code propertyName} or {@code listener} is {@code null}, * no exception is thrown and no action is taken. * @@ -539,7 +539,7 @@ * list for a specific property. This method should be used to remove * {@code PropertyChangeListener}s * that were registered for a specific bound property. - * <p/> + * <p> * If {@code propertyName} or {@code listener} is {@code null}, * no exception is thrown and no action is taken. * @@ -702,7 +702,7 @@ /** * Paints the specified region in the {@code JLayer} this {@code LayerUI} is set to, immediately. - * <p/> + * <p> * This method is to be overridden when the dirty region needs to be changed. * The default implementation delegates its functionality to {@link JComponent#paintImmediately(int, int, int, int)}. *
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicBorders.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicBorders.java Wed Sep 25 17:35:22 2013 +0400 @@ -38,7 +38,7 @@ import java.awt.Graphics; /** - * Factory object that can vend Borders appropriate for the basic L & F. + * Factory object that can vend Borders appropriate for the basic L & F. * @author Georges Saab * @author Amy Fowler */
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicDesktopIconUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicDesktopIconUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -34,7 +34,7 @@ import java.beans.*; /** - * Basic L&F for a minimized window on a desktop. + * Basic L&F for a minimized window on a desktop. * * @author David Kloba * @author Steve Wilson
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicDesktopPaneUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicDesktopPaneUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -42,7 +42,7 @@ import sun.awt.AppContext; /** - * Basic L&F for a desktop. + * Basic L&F for a desktop. * * @author Steve Wilson */
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicFileChooserUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicFileChooserUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -43,7 +43,7 @@ import sun.swing.SwingUtilities2; /** - * Basic L&F implementation of a FileChooser. + * Basic L&F implementation of a FileChooser. * * @author Jeff Dinkins */
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicGraphicsUtils.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicGraphicsUtils.java Wed Sep 25 17:35:22 2013 +0400 @@ -231,7 +231,7 @@ * just like <code>g.drawString</code> would. * The character at index <code>underlinedIndex</code> * in text will be underlined. If <code>index</code> is beyond the - * bounds of <code>text</code> (including < 0), nothing will be + * bounds of <code>text</code> (including < 0), nothing will be * underlined. * * @param g Graphics to draw with
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicIconFactory.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicIconFactory.java Wed Sep 25 17:35:22 2013 +0400 @@ -35,7 +35,7 @@ import java.io.Serializable; /** - * Factory object that can vend Icons appropriate for the basic L & F. + * Factory object that can vend Icons appropriate for the basic L & F. * <p> * <strong>Warning:</strong> * Serialized objects of this class will not be compatible with
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicInternalFrameTitlePane.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicInternalFrameTitlePane.java Wed Sep 25 17:35:22 2013 +0400 @@ -553,7 +553,7 @@ /** * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class PropertyChangeHandler implements PropertyChangeListener { // NOTE: This class exists only for backward compatability. All @@ -567,7 +567,7 @@ /** * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class TitlePaneLayout implements LayoutManager { // NOTE: This class exists only for backward compatability. All @@ -597,7 +597,7 @@ /** * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class CloseAction extends AbstractAction { public CloseAction() { @@ -614,7 +614,7 @@ /** * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class MaximizeAction extends AbstractAction { public MaximizeAction() { @@ -643,7 +643,7 @@ /** * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class IconifyAction extends AbstractAction { public IconifyAction() { @@ -664,7 +664,7 @@ /** * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class RestoreAction extends AbstractAction { public RestoreAction() { @@ -691,7 +691,7 @@ /** * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class MoveAction extends AbstractAction { public MoveAction() { @@ -725,7 +725,7 @@ /** * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class SizeAction extends AbstractAction { public SizeAction() { @@ -741,7 +741,7 @@ /** * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class SystemMenuBar extends JMenuBar { public boolean isFocusTraversable() { return false; }
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicInternalFrameUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicInternalFrameUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -35,7 +35,7 @@ import sun.swing.UIAction; /** - * A basic L&F implementation of JInternalFrame. + * A basic L&F implementation of JInternalFrame. * * @author David Kloba * @author Rich Schiavi
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicLabelUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicLabelUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -50,7 +50,7 @@ import java.beans.PropertyChangeListener; /** - * A Windows L&F implementation of LabelUI. This implementation + * A Windows L&F implementation of LabelUI. This implementation * is completely static, i.e. there's only one UIView implementation * that's shared by all JLabel objects. *
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicListUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicListUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -537,7 +537,7 @@ * <td>JList.VERTICAL_WRAP * <td>If the visible row count is greater than zero, the preferredHeight * is the maximum cell height * visibleRowCount. If the visible row - * count is <= 0, the preferred height is either the current height + * count is <= 0, the preferred height is either the current height * of the list, or the maximum cell height, whichever is * bigger. The preferred width is than the maximum cell width * * number of columns needed. Where the number of columns needs is @@ -556,7 +556,7 @@ * longer need 8 rows to display this, you only need 5, thus * the adjustedRowCount is 5. * <p>If the visible row - * count is <= 0, the preferred height is dictated by the + * count is <= 0, the preferred height is dictated by the * number of columns, which will be as many as can fit in the width * of the <code>JList</code> (width / max cell width), with at * least one column. The preferred height then becomes the
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicMenuBarUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicMenuBarUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -46,7 +46,7 @@ /** - * A default L&F implementation of MenuBarUI. This implementation + * A default L&F implementation of MenuBarUI. This implementation * is a "combined" view/controller. * * @author Georges Saab
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicMenuUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicMenuUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -39,7 +39,7 @@ /** - * A default L&F implementation of MenuUI. This implementation + * A default L&F implementation of MenuUI. This implementation * is a "combined" view/controller. * * @author Georges Saab
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicOptionPaneUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicOptionPaneUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -131,7 +131,7 @@ } /** - * Installs the receiver as the L&F for the passed in + * Installs the receiver as the L&F for the passed in * <code>JOptionPane</code>. */ public void installUI(JComponent c) { @@ -144,7 +144,7 @@ } /** - * Removes the receiver from the L&F controller of the passed in split + * Removes the receiver from the L&F controller of the passed in split * pane. */ public void uninstallUI(JComponent c) { @@ -827,7 +827,7 @@ } /** - * Returns true, basic L&F wants all the buttons to have the same + * Returns true, basic L&F wants all the buttons to have the same * width. */ protected boolean getSizeButtonsToSameWidth() {
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicPopupMenuSeparatorUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicPopupMenuSeparatorUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -34,7 +34,7 @@ import javax.swing.plaf.ComponentUI; /** - * A Basic L&F implementation of PopupMenuSeparatorUI. This implementation + * A Basic L&F implementation of PopupMenuSeparatorUI. This implementation * is a "combined" view/controller. * * @author Jeff Shapiro
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicPopupMenuUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicPopupMenuUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -53,7 +53,7 @@ import sun.awt.AppContext; /** - * A Windows L&F implementation of PopupMenuUI. This implementation + * A Windows L&F implementation of PopupMenuUI. This implementation * is a "combined" view/controller. * * @author Georges Saab
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicProgressBarUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicProgressBarUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -38,7 +38,7 @@ import sun.swing.DefaultLookup; /** - * A Basic L&F implementation of ProgressBarUI. + * A Basic L&F implementation of ProgressBarUI. * * @author Michael C. Albers * @author Kathy Walrath
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicScrollPaneUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicScrollPaneUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -45,7 +45,7 @@ import java.awt.event.*; /** - * A default L&F implementation of ScrollPaneUI. + * A default L&F implementation of ScrollPaneUI. * * @author Hans Muller */
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicSeparatorUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicSeparatorUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -36,7 +36,7 @@ /** - * A Basic L&F implementation of SeparatorUI. This implementation + * A Basic L&F implementation of SeparatorUI. This implementation * is a "combined" view/controller. * * @author Georges Saab
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicSliderUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicSliderUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -39,7 +39,7 @@ /** - * A Basic L&F implementation of SliderUI. + * A Basic L&F implementation of SliderUI. * * @author Tom Santos */ @@ -1542,7 +1542,7 @@ * Data model listener. * * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class ChangeHandler implements ChangeListener { // NOTE: This class exists only for backward compatability. All @@ -1561,7 +1561,7 @@ * Track mouse movements. * * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class TrackListener extends MouseInputAdapter { protected transient int offset; @@ -1805,7 +1805,7 @@ * Scroll-event listener. * * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class ScrollListener implements ActionListener { // changed this class to public to avoid bogus IllegalAccessException @@ -1849,7 +1849,7 @@ * Listener for resizing events. * <p> * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class ComponentHandler extends ComponentAdapter { // NOTE: This class exists only for backward compatability. All @@ -1865,7 +1865,7 @@ * Focus-change listener. * <p> * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class FocusHandler implements FocusListener { // NOTE: This class exists only for backward compatability. All @@ -1892,7 +1892,7 @@ * Please refer to the key bindings specification for further details. * <p> * This class should be treated as a "protected" inner class. - * Instantiate it only within subclasses of <Foo>. + * Instantiate it only within subclasses of <code>Foo</code>. */ public class ActionScroller extends AbstractAction { // NOTE: This class exists only for backward compatability. All
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicSplitPaneUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicSplitPaneUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -44,7 +44,7 @@ /** - * A Basic L&F implementation of the SplitPaneUI. + * A Basic L&F implementation of the SplitPaneUI. * * @author Scott Violet * @author Steve Wilson @@ -1060,7 +1060,7 @@ /** - * @inheritDoc + * {@inheritDoc} */ public void paint(Graphics g, JComponent jc) { if (!painted && splitPane.getDividerLocation()<0) {
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicTabbedPaneUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicTabbedPaneUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -43,7 +43,7 @@ import sun.swing.UIAction; /** - * A Basic L&F implementation of TabbedPaneUI. + * A Basic L&F implementation of TabbedPaneUI. * * @author Amy Fowler * @author Philip Milne @@ -669,7 +669,7 @@ * * @param tab index of tab to get baseline for * @exception IndexOutOfBoundsException if index is out of range - * (index < 0 || index >= tab count) + * (index < 0 || index >= tab count) * @return baseline or a value < 0 indicating there is no reasonable * baseline * @since 1.6
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicToolBarSeparatorUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicToolBarSeparatorUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -37,7 +37,7 @@ /** - * A Basic L&F implementation of ToolBarSeparatorUI. This implementation + * A Basic L&F implementation of ToolBarSeparatorUI. This implementation * is a "combined" view/controller. * <p> *
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicToolBarUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicToolBarUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -42,7 +42,7 @@ /** - * A Basic L&F implementation of ToolBarUI. This implementation + * A Basic L&F implementation of ToolBarUI. This implementation * is a "combined" view/controller. * <p> *
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicToolTipUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicToolTipUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -40,7 +40,7 @@ /** - * Standard tool tip L&F. + * Standard tool tip L&F. * <p> * * @author Dave Moore
--- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicTreeUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicTreeUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -49,7 +49,7 @@ import sun.swing.UIAction; /** - * The basic L&F for a hierarchical data structure. + * The basic L&F for a hierarchical data structure. * <p> * * @author Scott Violet
--- a/jdk/src/share/classes/javax/swing/plaf/basic/DefaultMenuLayout.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/DefaultMenuLayout.java Wed Sep 25 17:35:22 2013 +0400 @@ -34,7 +34,7 @@ /** * The default layout manager for Popup menus and menubars. This * class is an extension of BoxLayout which adds the UIResource tag - * so that pluggable L&Fs can distinguish it from user-installed + * so that pluggable L&Fs can distinguish it from user-installed * layout managers on menus. * * @author Georges Saab
--- a/jdk/src/share/classes/javax/swing/plaf/metal/MetalBorders.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/metal/MetalBorders.java Wed Sep 25 17:35:22 2013 +0400 @@ -43,7 +43,7 @@ /** - * Factory object that can vend Borders appropriate for the metal L & F. + * Factory object that can vend Borders appropriate for the metal L & F. * @author Steve Wilson */
--- a/jdk/src/share/classes/javax/swing/plaf/metal/MetalFileChooserUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/metal/MetalFileChooserUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -46,7 +46,7 @@ import sun.swing.*; /** - * Metal L&F implementation of a FileChooser. + * Metal L&F implementation of a FileChooser. * * @author Jeff Dinkins */
--- a/jdk/src/share/classes/javax/swing/plaf/metal/MetalLabelUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/metal/MetalLabelUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -37,7 +37,7 @@ /** - * A Windows L&F implementation of LabelUI. This implementation + * A Windows L&F implementation of LabelUI. This implementation * is completely static, i.e. there's only one UIView implementation * that's shared by all JLabel objects. *
--- a/jdk/src/share/classes/javax/swing/plaf/metal/MetalLookAndFeel.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/metal/MetalLookAndFeel.java Wed Sep 25 17:35:22 2013 +0400 @@ -291,8 +291,7 @@ * Populates {@code table} with system colors. The following values are * added to {@code table}: * <table border="1" cellpadding="1" cellspacing="0" - * summary="Metal's system color mapping" - * valign="top" > + * summary="Metal's system color mapping"> * <tr valign="top" align="left"> * <th bgcolor="#CCCCFF" align="left">Key * <th bgcolor="#CCCCFF" align="left">Value
--- a/jdk/src/share/classes/javax/swing/plaf/metal/MetalPopupMenuSeparatorUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/metal/MetalPopupMenuSeparatorUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -35,7 +35,7 @@ /** - * A Metal L&F implementation of PopupMenuSeparatorUI. This implementation + * A Metal L&F implementation of PopupMenuSeparatorUI. This implementation * is a "combined" view/controller. * * @author Jeff Shapiro
--- a/jdk/src/share/classes/javax/swing/plaf/metal/MetalScrollPaneUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/metal/MetalScrollPaneUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -37,7 +37,7 @@ /** - * A Metal L&F implementation of ScrollPaneUI. + * A Metal L&F implementation of ScrollPaneUI. * <p> * <strong>Warning:</strong> * Serialized objects of this class will not be compatible with
--- a/jdk/src/share/classes/javax/swing/plaf/metal/MetalSeparatorUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/metal/MetalSeparatorUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -36,7 +36,7 @@ /** - * A Metal L&F implementation of SeparatorUI. This implementation + * A Metal L&F implementation of SeparatorUI. This implementation * is a "combined" view/controller. * <p> * <strong>Warning:</strong>
--- a/jdk/src/share/classes/javax/swing/plaf/metal/MetalSliderUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/metal/MetalSliderUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -37,7 +37,7 @@ import javax.swing.plaf.*; /** - * A Java L&F implementation of SliderUI. + * A Java L&F implementation of SliderUI. * <p> * <strong>Warning:</strong> * Serialized objects of this class will not be compatible with
--- a/jdk/src/share/classes/javax/swing/plaf/metal/MetalTabbedPaneUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/metal/MetalTabbedPaneUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -776,7 +776,7 @@ } /** - * Overridden to do nothing for the Java L&F. + * Overridden to do nothing for the Java L&F. */ protected int getTabLabelShiftX( int tabPlacement, int tabIndex, boolean isSelected ) { return 0; @@ -784,7 +784,7 @@ /** - * Overridden to do nothing for the Java L&F. + * Overridden to do nothing for the Java L&F. */ protected int getTabLabelShiftY( int tabPlacement, int tabIndex, boolean isSelected ) { return 0;
--- a/jdk/src/share/classes/javax/swing/plaf/metal/MetalToolTipUI.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/metal/MetalToolTipUI.java Wed Sep 25 17:35:22 2013 +0400 @@ -38,7 +38,7 @@ /** - * A Metal L&F extension of BasicToolTipUI. + * A Metal L&F extension of BasicToolTipUI. * <p> * <strong>Warning:</strong> * Serialized objects of this class will not be compatible with
--- a/jdk/src/share/classes/javax/swing/plaf/nimbus/AbstractRegionPainter.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/nimbus/AbstractRegionPainter.java Wed Sep 25 17:35:22 2013 +0400 @@ -137,7 +137,7 @@ protected AbstractRegionPainter() { } /** - * @inheritDoc + * {@inheritDoc} */ @Override public final void paint(Graphics2D g, JComponent c, int w, int h) { @@ -535,11 +535,11 @@ * @param maxH The maximium scale in the horizontal direction to use before punting and redrawing from scratch. * For example, if maxH is 2, then we will attempt to scale any cached images up to 2x the canvas * width before redrawing from scratch. Reasonable maxH values may improve painting performance. - * If set too high, then you may get poor looking graphics at higher zoom levels. Must be >= 1. + * If set too high, then you may get poor looking graphics at higher zoom levels. Must be >= 1. * @param maxV The maximium scale in the vertical direction to use before punting and redrawing from scratch. * For example, if maxV is 2, then we will attempt to scale any cached images up to 2x the canvas * height before redrawing from scratch. Reasonable maxV values may improve painting performance. - * If set too high, then you may get poor looking graphics at higher zoom levels. Must be >= 1. + * If set too high, then you may get poor looking graphics at higher zoom levels. Must be >= 1. */ public PaintContext(Insets insets, Dimension canvasSize, boolean inverted, CacheMode cacheMode, double maxH, double maxV) {
--- a/jdk/src/share/classes/javax/swing/plaf/nimbus/NimbusLookAndFeel.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/nimbus/NimbusLookAndFeel.java Wed Sep 25 17:35:22 2013 +0400 @@ -124,7 +124,7 @@ } /** - * @inheritDoc + * {@inheritDoc} */ @Override public UIDefaults getDefaults() { if (uiDefaults == null){ @@ -261,7 +261,7 @@ } /** - * @inheritDoc + * {@inheritDoc} * @return {@code true} */ @Override public boolean shouldUpdateStyleOnAncestorChanged() { @@ -269,7 +269,7 @@ } /** - * @inheritDoc + * {@inheritDoc} * * <p>Overridden to return {@code true} when one of the following * properties change:
--- a/jdk/src/share/classes/javax/swing/plaf/nimbus/NimbusStyle.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/nimbus/NimbusStyle.java Wed Sep 25 17:35:22 2013 +0400 @@ -218,7 +218,7 @@ } /** - * @inheritDoc + * {@inheritDoc} * * Overridden to cause this style to populate itself with data from * UIDefaults, if necessary. @@ -472,7 +472,7 @@ } /** - * @inheritDoc + * {@inheritDoc} * * Overridden to cause this style to populate itself with data from * UIDefaults, if necessary. @@ -519,7 +519,7 @@ } /** - * @inheritDoc + * {@inheritDoc} * * <p>Overridden to cause this style to populate itself with data from * UIDefaults, if necessary.</p> @@ -562,7 +562,7 @@ } /** - * @inheritDoc + * {@inheritDoc} * * Overridden to cause this style to populate itself with data from * UIDefaults, if necessary. If a value named "font" is not found in @@ -590,7 +590,7 @@ } /** - * @inheritDoc + * {@inheritDoc} * * Returns the SynthPainter for this style, which ends up delegating to * the Painters installed in this style. @@ -600,7 +600,7 @@ } /** - * @inheritDoc + * {@inheritDoc} * * Overridden to cause this style to populate itself with data from * UIDefaults, if necessary. If opacity is not specified in UI defaults, @@ -616,7 +616,7 @@ } /** - * @inheritDoc + * {@inheritDoc} * * <p>Overridden to cause this style to populate itself with data from * UIDefaults, if necessary.</p> @@ -628,7 +628,7 @@ * Button.opacity * Button.Enabled.foreground * Button.Enabled+Selected.background - * </pre></p> + * </pre> * * <p>In this example, suppose you were in the Enabled+Selected state and * searched for "foreground". In this case, we first check for
--- a/jdk/src/share/classes/javax/swing/plaf/synth/Region.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/synth/Region.java Wed Sep 25 17:35:22 2013 +0400 @@ -62,10 +62,10 @@ * The following <a href="doc-files/synthFileFormat.html">xml</a> * accomplishes the same thing: * <pre> - * <style id="splitPaneStyle"> + * <style id="splitPaneStyle"> * ... - * </style> - * <bind style="splitPaneStyle" type="region" key="SplitPane"/> + * </style> + * <bind style="splitPaneStyle" type="region" key="SplitPane"/> * </pre> * * @since 1.5
--- a/jdk/src/share/classes/javax/swing/text/html/HTMLEditorKit.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/html/HTMLEditorKit.java Wed Sep 25 17:35:22 2013 +0400 @@ -55,7 +55,6 @@ * an effect upon the way that HTML is modeled. These * have influenced its design in a substantial way. * <dl> - * <p> * <dt> * Support editing * <dd>
--- a/jdk/src/share/classes/javax/swing/text/html/ImageView.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/html/ImageView.java Wed Sep 25 17:35:22 2013 +0400 @@ -554,8 +554,8 @@ * Sets the size of the view. This should cause * layout of the view if it has any layout duties. * - * @param width the width >= 0 - * @param height the height >= 0 + * @param width the width >= 0 + * @param height the height >= 0 */ public void setSize(float width, float height) { sync();
--- a/jdk/src/share/classes/javax/swing/text/html/InlineView.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/html/InlineView.java Wed Sep 25 17:35:22 2013 +0400 @@ -130,10 +130,10 @@ * * @param axis may be either View.X_AXIS or View.Y_AXIS * @param pos the potential location of the start of the - * broken view >= 0. This may be useful for calculating tab + * broken view >= 0. This may be useful for calculating tab * positions. * @param len specifies the relative length from <em>pos</em> - * where a potential break is desired >= 0. + * where a potential break is desired >= 0. * @return the weight, which should be a value between * ForcedBreakWeight and BadBreakWeight. * @see LabelView @@ -162,14 +162,14 @@ * @param axis may be either <code>View.X_AXIS</code> or * <code>View.Y_AXIS</code> * @param offset the location in the document model - * that a broken fragment would occupy >= 0. This + * that a broken fragment would occupy >= 0. This * would be the starting offset of the fragment * returned * @param pos the position along the axis that the - * broken view would occupy >= 0. This may be useful for + * broken view would occupy >= 0. This may be useful for * things like tab calculations * @param len specifies the distance along the axis - * where a potential break is desired >= 0 + * where a potential break is desired >= 0 * @return the fragment of the view that represents the * given span. * @since 1.5
--- a/jdk/src/share/classes/javax/swing/text/html/StyleSheet.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/html/StyleSheet.java Wed Sep 25 17:35:22 2013 +0400 @@ -74,7 +74,7 @@ * is stored to translate the context of an element to a * rule quickly. The following code fragment will display * the named styles, and therefore the CSS rules contained. - * <code><pre> + * <pre><code> * * import java.util.*; * import javax.swing.text.*; @@ -97,7 +97,7 @@ * } * } * - * </pre></code> + * </code></pre> * <p> * The semantics for when a CSS style should overide visual attributes * defined by an element are not well defined. For example, the html
--- a/jdk/src/share/classes/javax/swing/text/html/parser/ContentModel.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/html/parser/ContentModel.java Wed Sep 25 17:35:22 2013 +0400 @@ -42,7 +42,7 @@ */ public final class ContentModel implements Serializable { /** - * Type. Either '*', '?', '+', ',', '|', '&'. + * Type. Either '*', '?', '+', ',', '|', '&'. */ public int type; @@ -52,7 +52,7 @@ public Object content; /** - * The next content model (in a ',', '|' or '&' expression). + * The next content model (in a ',', '|' or '&' expression). */ public ContentModel next;
--- a/jdk/src/share/classes/javax/swing/text/html/parser/DocumentParser.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/html/parser/DocumentParser.java Wed Sep 25 17:35:22 2013 +0400 @@ -48,8 +48,8 @@ * <li><i>handleStartTag(head, ...)</i></li> * <li><i>handleEndTag(head)</i></li> * <li><i>handleStartTag(body, ...)</i></li> - * <li>handleStartTag(p, ...)</i></li> - * <li>handleText(...)</li> + * <li><i>handleStartTag(p, ...)</i></li> + * <li><i>handleText(...)</i></li> * <li><i>handleEndTag(p)</i></li> * <li><i>handleEndTag(body)</i></li> * <li><i>handleEndTag(html)</i></li>
--- a/jdk/src/share/classes/javax/swing/text/html/parser/Parser.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/html/parser/Parser.java Wed Sep 25 17:35:22 2013 +0400 @@ -58,12 +58,12 @@ * space should be used here, but I am using &nbsp to force the space to * be displayed): * <p> - * '<b>blah <i> <strike> foo' which can be treated as: - * '<b>blah <i><strike>foo' + * '<b>blah <i> <strike> foo' which can be treated as: + * '<b>blah <i><strike>foo' * <p>as well as: - * '<p><a href="xx"> <em>Using</em></a></p>' + * '<p><a href="xx"> <em>Using</em></a></p>' * which appears to be treated as: - * '<p><a href="xx"><em>Using</em></a></p>' + * '<p><a href="xx"><em>Using</em></a></p>' * <p> * If <code>strict</code> is false, when a tag that breaks flow, * (<code>TagElement.breaksFlows</code>) or trailing whitespace is
--- a/jdk/src/share/classes/javax/swing/tree/AbstractLayoutCache.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/tree/AbstractLayoutCache.java Wed Sep 25 17:35:22 2013 +0400 @@ -60,7 +60,7 @@ protected boolean rootVisible; /** - * Height to use for each row. If this is <= 0 the renderer will be + * Height to use for each row. If this is <= 0 the renderer will be * used to determine the height for each row. */ protected int rowHeight;
--- a/jdk/src/share/classes/javax/swing/tree/DefaultTreeCellEditor.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/tree/DefaultTreeCellEditor.java Wed Sep 25 17:35:22 2013 +0400 @@ -430,7 +430,7 @@ /** * Returns true if <code>event</code> is <code>null</code>, - * or it is a <code>MouseEvent</code> with a click count > 2 + * or it is a <code>MouseEvent</code> with a click count > 2 * and <code>inHitRegion</code> returns true. * @param event the event being studied */ @@ -448,7 +448,7 @@ /** * Returns true if the passed in location is a valid mouse location * to start editing from. This is implemented to return false if - * <code>x</code> is <= the width of the icon and icon gap displayed + * <code>x</code> is <= the width of the icon and icon gap displayed * by the renderer. In other words this returns true if the user * clicks over the text part displayed by the renderer, and false * otherwise.
--- a/jdk/src/share/classes/javax/swing/tree/DefaultTreeCellRenderer.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/tree/DefaultTreeCellRenderer.java Wed Sep 25 17:35:22 2013 +0400 @@ -60,8 +60,7 @@ * that have a value of type {@code UIResource} are refreshed from the * defaults table. The following table lists the mapping between * {@code DefaultTreeCellRenderer} property and defaults table key: - * <table border="1" cellpadding="1" cellspacing="0" - * valign="top" > + * <table border="1" cellpadding="1" cellspacing="0" summary=""> * <tr valign="top" align="left"> * <th bgcolor="#CCCCFF" align="left">Property: * <th bgcolor="#CCCCFF" align="left">Key:
--- a/jdk/src/share/classes/javax/swing/tree/DefaultTreeModel.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/tree/DefaultTreeModel.java Wed Sep 25 17:35:22 2013 +0400 @@ -164,8 +164,8 @@ * Returns the child of <I>parent</I> at index <I>index</I> in the parent's * child array. <I>parent</I> must be a node previously obtained from * this data source. This should not return null if <i>index</i> - * is a valid index for <i>parent</i> (that is <i>index</i> >= 0 && - * <i>index</i> < getChildCount(<i>parent</i>)). + * is a valid index for <i>parent</i> (that is <i>index</i> >= 0 && + * <i>index</i> < getChildCount(<i>parent</i>)). * * @param parent a node in the tree, obtained from this data source * @return the child of <I>parent</I> at index <I>index</I>
--- a/jdk/src/share/classes/javax/swing/tree/TreeCellRenderer.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/tree/TreeCellRenderer.java Wed Sep 25 17:35:22 2013 +0400 @@ -59,8 +59,8 @@ * <pre> * JTree.DropLocation dropLocation = tree.getDropLocation(); * if (dropLocation != null - * && dropLocation.getChildIndex() == -1 - * && tree.getRowForPath(dropLocation.getPath()) == row) { + * && dropLocation.getChildIndex() == -1 + * && tree.getRowForPath(dropLocation.getPath()) == row) { * * // this row represents the current drop location * // so render it specially, perhaps with a different color
--- a/jdk/src/share/classes/javax/swing/tree/TreeModel.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/tree/TreeModel.java Wed Sep 25 17:35:22 2013 +0400 @@ -76,8 +76,8 @@ * child array. <code>parent</code> must be a node previously obtained * from this data source. This should not return <code>null</code> * if <code>index</code> - * is a valid index for <code>parent</code> (that is <code>index >= 0 && - * index < getChildCount(parent</code>)). + * is a valid index for <code>parent</code> (that is <code>index >= 0 && + * index < getChildCount(parent</code>)). * * @param parent a node in the tree, obtained from this data source * @return the child of <code>parent</code> at index <code>index</code>
--- a/jdk/src/share/classes/javax/swing/undo/UndoManager.java Wed Sep 25 17:08:31 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/undo/UndoManager.java Wed Sep 25 17:35:22 2013 +0400 @@ -57,9 +57,9 @@ * and italicized are insignificant. * <p> * <a name="figure1"></a> - * <table border=0> + * <table border=0 summary=""> * <tr><td> - * <img src="doc-files/UndoManager-1.gif"> + * <img src="doc-files/UndoManager-1.gif" alt=""> * <tr><td align=center>Figure 1 * </table> * <p> @@ -70,9 +70,9 @@ * figure. * <p> * <a name="figure2"></a> - * <table border=0> + * <table border=0 summary=""> * <tr><td> - * <img src="doc-files/UndoManager-2.gif"> + * <img src="doc-files/UndoManager-2.gif" alt=""> * <tr><td align=center>Figure 2 * </table> * <p> @@ -82,9 +82,9 @@ * next edit to 0, as shown in the following figure. * <p> * <a name="figure3"></a> - * <table border=0> + * <table border=0 summary=""> * <tr><td> - * <img src="doc-files/UndoManager-3.gif"> + * <img src="doc-files/UndoManager-3.gif" alt=""> * <tr><td align=center>Figure 3 * </table> * <p> @@ -108,9 +108,9 @@ * figure. * <p> * <a name="figure4"></a> - * <table border=0> + * <table border=0 summary=""> * <tr><td> - * <img src="doc-files/UndoManager-4.gif"> + * <img src="doc-files/UndoManager-4.gif" alt=""> * <tr><td align=center>Figure 4 * </table> * <p>