提交 4849c451 编写于 作者: C cl

8026021: more fix of javadoc errors and warnings reported by doclint, see the description

Reviewed-by: anthony, serb
上级 473be07c
...@@ -162,7 +162,7 @@ public abstract class GraphicsDevice { ...@@ -162,7 +162,7 @@ public abstract class GraphicsDevice {
* <code>GraphicsEnvironment</code>. Although there is * <code>GraphicsEnvironment</code>. Although there is
* no public method to set this <code>String</code>, a programmer can * no public method to set this <code>String</code>, a programmer can
* use the <code>String</code> for debugging purposes. Vendors of * use the <code>String</code> for debugging purposes. Vendors of
* the Java<sup><font size=-2>TM</font></sup> Runtime Environment can * the Java&trade; Runtime Environment can
* format the return value of the <code>String</code>. To determine * format the return value of the <code>String</code>. To determine
* how to interpret the value of the <code>String</code>, contact the * how to interpret the value of the <code>String</code>, contact the
* vendor of your Java Runtime. To find out who the vendor is, from * vendor of your Java Runtime. To find out who the vendor is, from
......
...@@ -125,9 +125,9 @@ import java.util.Arrays; ...@@ -125,9 +125,9 @@ import java.util.Arrays;
* <center><table BORDER=0 WIDTH=800 * <center><table BORDER=0 WIDTH=800
* SUMMARY="absolute, relative and baseline values as described above"> * SUMMARY="absolute, relative and baseline values as described above">
* <tr> * <tr>
* <th><P STYLE="TEXT-ALIGN:LEFT">Absolute Values</th> * <th><P style="text-align:left">Absolute Values</th>
* <th><P STYLE="TEXT-ALIGN:LEFT">Orientation Relative Values</th> * <th><P style="text-align:left">Orientation Relative Values</th>
* <th><P STYLE="TEXT-ALIGN:LEFT">Baseline Relative Values</th> * <th><P style="text-align:left">Baseline Relative Values</th>
* </tr> * </tr>
* <tr> * <tr>
* <td> * <td>
......
...@@ -94,7 +94,8 @@ import java.beans.ConstructorProperties; ...@@ -94,7 +94,8 @@ import java.beans.ConstructorProperties;
* of the three cycle methods: * of the three cycle methods:
* <p> * <p>
* <center> * <center>
* <img src = "doc-files/LinearGradientPaint.png" alt="LinearGradientPaint"> * <img src = "doc-files/LinearGradientPaint.png"
* alt="image showing the output of the example code">
* </center> * </center>
* *
* @see java.awt.Paint * @see java.awt.Paint
......
...@@ -80,14 +80,16 @@ import java.beans.ConstructorProperties; ...@@ -80,14 +80,16 @@ import java.beans.ConstructorProperties;
* from the focus point. The following figure shows that the distance AB * from the focus point. The following figure shows that the distance AB
* is equal to the distance BC, and the distance AD is equal to the distance DE. * is equal to the distance BC, and the distance AD is equal to the distance DE.
* <center> * <center>
* <img src = "doc-files/RadialGradientPaint-3.png" alt="RadialGradientPaint-3"> * <img src = "doc-files/RadialGradientPaint-3.png" alt="image showing the
* distance AB=BC, and AD=DE">
* </center> * </center>
* If the gradient and graphics rendering transforms are uniformly scaled and * If the gradient and graphics rendering transforms are uniformly scaled and
* the user sets the focus so that it coincides with the center of the circle, * the user sets the focus so that it coincides with the center of the circle,
* the gradient color proportions are equal for any line drawn from the center. * the gradient color proportions are equal for any line drawn from the center.
* The following figure shows the distances AB, BC, AD, and DE. They are all equal. * The following figure shows the distances AB, BC, AD, and DE. They are all equal.
* <center> * <center>
* <img src = "doc-files/RadialGradientPaint-4.png" alt="RadialGradientPaint-4"> * <img src = "doc-files/RadialGradientPaint-4.png" alt="image showing the
* distance of AB, BC, AD, and DE are all equal">
* </center> * </center>
* Note that some minor variations in distances may occur due to sampling at * Note that some minor variations in distances may occur due to sampling at
* the granularity of a pixel. * the granularity of a pixel.
...@@ -117,7 +119,8 @@ import java.beans.ConstructorProperties; ...@@ -117,7 +119,8 @@ import java.beans.ConstructorProperties;
* (centered) focus for each of the three cycle methods: * (centered) focus for each of the three cycle methods:
* <p> * <p>
* <center> * <center>
* <img src = "doc-files/RadialGradientPaint-1.png" alt="RadialGradientPaint-1"> * <img src = "doc-files/RadialGradientPaint-1.png" alt="image showing the
* output of the sameple code">
* </center> * </center>
* *
* <p> * <p>
...@@ -141,7 +144,8 @@ import java.beans.ConstructorProperties; ...@@ -141,7 +144,8 @@ import java.beans.ConstructorProperties;
* focus for each of the three cycle methods: * focus for each of the three cycle methods:
* <p> * <p>
* <center> * <center>
* <img src = "doc-files/RadialGradientPaint-2.png" alt="RadialGradientPaint-2"> * <img src = "doc-files/RadialGradientPaint-2.png" alt="image showing the
* output of the sample code">
* </center> * </center>
* *
* @see java.awt.Paint * @see java.awt.Paint
......
...@@ -112,7 +112,7 @@ import java.awt.font.FontRenderContext; ...@@ -112,7 +112,7 @@ import java.awt.font.FontRenderContext;
* <strong>Examples</strong>:<p> * <strong>Examples</strong>:<p>
* Rendering a paragraph in a component * Rendering a paragraph in a component
* <blockquote> * <blockquote>
* <pre> * <pre>{@code
* public void paint(Graphics graphics) { * public void paint(Graphics graphics) {
* *
* Point2D pen = new Point2D(10, 20); * Point2D pen = new Point2D(10, 20);
...@@ -137,13 +137,13 @@ import java.awt.font.FontRenderContext; ...@@ -137,13 +137,13 @@ import java.awt.font.FontRenderContext;
* pen.y += layout.getDescent() + layout.getLeading(); * pen.y += layout.getDescent() + layout.getLeading();
* } * }
* } * }
* </pre> * }</pre>
* </blockquote> * </blockquote>
* <p> * <p>
* Rendering text with tabs. For simplicity, the overall text * Rendering text with tabs. For simplicity, the overall text
* direction is assumed to be left-to-right * direction is assumed to be left-to-right
* <blockquote> * <blockquote>
* <pre> * <pre>{@code
* public void paint(Graphics graphics) { * public void paint(Graphics graphics) {
* *
* float leftMargin = 10, rightMargin = 310; * float leftMargin = 10, rightMargin = 310;
...@@ -240,7 +240,7 @@ import java.awt.font.FontRenderContext; ...@@ -240,7 +240,7 @@ import java.awt.font.FontRenderContext;
* verticalPos += maxDescent; * verticalPos += maxDescent;
* } * }
* } * }
* </pre> * }</pre>
* </blockquote> * </blockquote>
* @see TextLayout * @see TextLayout
*/ */
......
...@@ -41,7 +41,7 @@ public interface MultipleMaster { ...@@ -41,7 +41,7 @@ public interface MultipleMaster {
public int getNumDesignAxes(); public int getNumDesignAxes();
/** /**
* Returns an array of design limits interleaved in the form [from->to] * Returns an array of design limits interleaved in the form [from&rarr;to]
* for each axis. For example, * for each axis. For example,
* design limits for weight could be from 0.1 to 1.0. The values are * design limits for weight could be from 0.1 to 1.0. The values are
* returned in the same order returned by * returned in the same order returned by
......
...@@ -1212,7 +1212,7 @@ public final class NumericShaper implements java.io.Serializable { ...@@ -1212,7 +1212,7 @@ public final class NumericShaper implements java.io.Serializable {
* For example, to check if a shaper shapes to Arabic, you would use the * For example, to check if a shaper shapes to Arabic, you would use the
* following: * following:
* <blockquote> * <blockquote>
* <code>if ((shaper.getRanges() & shaper.ARABIC) != 0) { ... </code> * <code>if ((shaper.getRanges() &amp; shaper.ARABIC) != 0) { ... </code>
* </blockquote> * </blockquote>
* *
* <p>Note that this method supports only the bit mask-based * <p>Note that this method supports only the bit mask-based
......
...@@ -33,7 +33,7 @@ package java.awt.font; ...@@ -33,7 +33,7 @@ package java.awt.font;
* <p> * <p>
* For more information on TrueType and OpenType fonts, see the * For more information on TrueType and OpenType fonts, see the
* OpenType specification. * OpenType specification.
* ( <a href=http://www.microsoft.com/typography/otspec/">http://www.microsoft.com/typography/otspec/l</a> ). * ( <a href="http://www.microsoft.com/typography/otspec/">http://www.microsoft.com/typography/otspec/</a> ).
*/ */
public interface OpenType { public interface OpenType {
......
...@@ -47,7 +47,7 @@ import java.beans.ConstructorProperties; ...@@ -47,7 +47,7 @@ import java.beans.ConstructorProperties;
* [ 1 ] [ 0 0 1 ] [ 1 ] [ 1 ] * [ 1 ] [ 0 0 1 ] [ 1 ] [ 1 ]
* </pre> * </pre>
* <p> * <p>
* <a name="quadrantapproximation"></a><h4>Handling 90-Degree Rotations</h4> * <h4><a name="quadrantapproximation">Handling 90-Degree Rotations</a></h4>
* <p> * <p>
* In some variations of the <code>rotate</code> methods in the * In some variations of the <code>rotate</code> methods in the
* <code>AffineTransform</code> class, a double-precision argument * <code>AffineTransform</code> class, a double-precision argument
......
...@@ -98,7 +98,6 @@ public class InputContext { ...@@ -98,7 +98,6 @@ public class InputContext {
* an input method or keyboard layout has been successfully selected. The * an input method or keyboard layout has been successfully selected. The
* following steps are taken until an input method has been selected: * following steps are taken until an input method has been selected:
* *
* <p>
* <ul> * <ul>
* <li> * <li>
* If the currently selected input method or keyboard layout supports the * If the currently selected input method or keyboard layout supports the
......
...@@ -98,10 +98,10 @@ import java.beans.*; ...@@ -98,10 +98,10 @@ import java.beans.*;
* summary="Supported Action properties" * summary="Supported Action properties"
* valign="top" > * valign="top" >
* <tr valign="top" align="left"> * <tr valign="top" align="left">
* <th bgcolor="#CCCCFF" align="left">Component Property * <th style="background-color:#CCCCFF" align="left">Component Property
* <th bgcolor="#CCCCFF" align="left">Components * <th style="background-color:#CCCCFF" align="left">Components
* <th bgcolor="#CCCCFF" align="left">Action Key * <th style="background-color:#CCCCFF" align="left">Action Key
* <th bgcolor="#CCCCFF" align="left">Notes * <th style="background-color:#CCCCFF" align="left">Notes
* <tr valign="top" align="left"> * <tr valign="top" align="left">
* <td><b><code>enabled</code></b> * <td><b><code>enabled</code></b>
* <td>All * <td>All
......
...@@ -79,7 +79,7 @@ import static javax.swing.SwingConstants.VERTICAL; ...@@ -79,7 +79,7 @@ import static javax.swing.SwingConstants.VERTICAL;
* The following diagram shows a sequential group along the horizontal * The following diagram shows a sequential group along the horizontal
* axis. The sequential group contains three components. A parallel group * axis. The sequential group contains three components. A parallel group
* was used along the vertical axis. * was used along the vertical axis.
* <p align="center"> * <p style="text-align:center">
* <img src="doc-files/groupLayout.1.gif"> * <img src="doc-files/groupLayout.1.gif">
* <p> * <p>
* To reinforce that each axis is treated independently the diagram shows * To reinforce that each axis is treated independently the diagram shows
...@@ -101,7 +101,7 @@ import static javax.swing.SwingConstants.VERTICAL; ...@@ -101,7 +101,7 @@ import static javax.swing.SwingConstants.VERTICAL;
* parallel group along the horizontal axis and the sequential group along * parallel group along the horizontal axis and the sequential group along
* the vertical axis. * the vertical axis.
* <p> * <p>
* <p align="center"> * <p style="text-align:center">
* <img src="doc-files/groupLayout.2.gif"> * <img src="doc-files/groupLayout.2.gif">
* <p> * <p>
* As {@code c1} is the largest of the three components, the parallel * As {@code c1} is the largest of the three components, the parallel
...@@ -115,7 +115,7 @@ import static javax.swing.SwingConstants.VERTICAL; ...@@ -115,7 +115,7 @@ import static javax.swing.SwingConstants.VERTICAL;
* <p> * <p>
* The following diagram shows a sequential group along both the horizontal * The following diagram shows a sequential group along both the horizontal
* and vertical axis. * and vertical axis.
* <p align="center"> * <p style="text-align:center">
* <img src="doc-files/groupLayout.3.gif"> * <img src="doc-files/groupLayout.3.gif">
* <p> * <p>
* {@code GroupLayout} provides the ability to insert gaps between * {@code GroupLayout} provides the ability to insert gaps between
...@@ -172,7 +172,7 @@ import static javax.swing.SwingConstants.VERTICAL; ...@@ -172,7 +172,7 @@ import static javax.swing.SwingConstants.VERTICAL;
* </pre> * </pre>
* <p> * <p>
* When run the following is produced. * When run the following is produced.
* <p align="center"> * <p style="text-align:center">
* <img src="doc-files/groupLayout.example.png"> * <img src="doc-files/groupLayout.example.png">
* <p> * <p>
* This layout consists of the following. * This layout consists of the following.
......
...@@ -160,9 +160,9 @@ import sun.swing.SwingAccessor; ...@@ -160,9 +160,9 @@ import sun.swing.SwingAccessor;
* *
* <table border=1 summary="Stages of keyboard and input method event handling"> * <table border=1 summary="Stages of keyboard and input method event handling">
* <tr> * <tr>
* <th id="stage"><p align="left">Stage</p></th> * <th id="stage"><p style="text-align:left">Stage</p></th>
* <th id="ke"><p align="left">KeyEvent</p></th> * <th id="ke"><p style="text-align:left">KeyEvent</p></th>
* <th id="ime"><p align="left">InputMethodEvent</p></th></tr> * <th id="ime"><p style="text-align:left">InputMethodEvent</p></th></tr>
* <tr><td headers="stage">1. </td> * <tr><td headers="stage">1. </td>
* <td headers="ke">input methods </td> * <td headers="ke">input methods </td>
* <td headers="ime">(generated here)</td></tr> * <td headers="ime">(generated here)</td></tr>
...@@ -214,7 +214,7 @@ import sun.swing.SwingAccessor; ...@@ -214,7 +214,7 @@ import sun.swing.SwingAccessor;
* The text document model may be shared by other views which act as observers * The text document model may be shared by other views which act as observers
* of the model (e.g. a document may be shared by multiple components). * of the model (e.g. a document may be shared by multiple components).
* *
* <p align=center><img src="doc-files/editor.gif" alt="Diagram showing interaction between Controller, Document, events, and ViewFactory" * <p style="text-align:center"><img src="doc-files/editor.gif" alt="Diagram showing interaction between Controller, Document, events, and ViewFactory"
* HEIGHT=358 WIDTH=587></p> * HEIGHT=358 WIDTH=587></p>
* *
* <p> * <p>
...@@ -1399,8 +1399,8 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -1399,8 +1399,8 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
* Fetches a portion of the text represented by the * Fetches a portion of the text represented by the
* component. Returns an empty string if length is 0. * component. Returns an empty string if length is 0.
* *
* @param offs the offset >= 0 * @param offs the offset &ge; 0
* @param len the length >= 0 * @param len the length &ge; 0
* @return the text * @return the text
* @exception BadLocationException if the offset or length are invalid * @exception BadLocationException if the offset or length are invalid
*/ */
...@@ -1416,7 +1416,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -1416,7 +1416,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
* be computed until the component has been sized). The * be computed until the component has been sized). The
* component does not have to be visible or painted. * component does not have to be visible or painted.
* *
* @param pos the position >= 0 * @param pos the position &ge; 0
* @return the coordinates as a rectangle, with (r.x, r.y) as the location * @return the coordinates as a rectangle, with (r.x, r.y) as the location
* in the coordinate system, or null if the component does * in the coordinate system, or null if the component does
* not yet have a positive size. * not yet have a positive size.
...@@ -1437,7 +1437,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -1437,7 +1437,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
* component does not have to be visible or painted. * component does not have to be visible or painted.
* *
* @param pt the location in the view to translate * @param pt the location in the view to translate
* @return the offset >= 0 from the start of the document, * @return the offset &ge; 0 from the start of the document,
* or -1 if the component does not yet have a positive * or -1 if the component does not yet have a positive
* size. * size.
* @see TextUI#viewToModel * @see TextUI#viewToModel
...@@ -1688,7 +1688,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -1688,7 +1688,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
* text component. * text component.
* *
* @return the position of the text insertion caret for the * @return the position of the text insertion caret for the
* text component >= 0 * text component &ge; 0
*/ */
@Transient @Transient
public int getCaretPosition() { public int getCaretPosition() {
...@@ -1814,7 +1814,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -1814,7 +1814,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
* Returns the selected text's start position. Return 0 for an * Returns the selected text's start position. Return 0 for an
* empty document, or the value of dot if no selection. * empty document, or the value of dot if no selection.
* *
* @return the start position >= 0 * @return the start position &ge; 0
*/ */
@Transient @Transient
public int getSelectionStart() { public int getSelectionStart() {
...@@ -1832,7 +1832,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -1832,7 +1832,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
* This is implemented to forward to the <code>Caret</code> * This is implemented to forward to the <code>Caret</code>
* implementation which is where the actual selection is maintained. * implementation which is where the actual selection is maintained.
* *
* @param selectionStart the start position of the text >= 0 * @param selectionStart the start position of the text &ge; 0
* @beaninfo * @beaninfo
* description: starting location of the selection. * description: starting location of the selection.
*/ */
...@@ -1847,7 +1847,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -1847,7 +1847,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
* Returns the selected text's end position. Return 0 if the document * Returns the selected text's end position. Return 0 if the document
* is empty, or the value of dot if there is no selection. * is empty, or the value of dot if there is no selection.
* *
* @return the end position >= 0 * @return the end position &ge; 0
*/ */
@Transient @Transient
public int getSelectionEnd() { public int getSelectionEnd() {
...@@ -1865,7 +1865,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -1865,7 +1865,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
* This is implemented to forward to the <code>Caret</code> * This is implemented to forward to the <code>Caret</code>
* implementation which is where the actual selection is maintained. * implementation which is where the actual selection is maintained.
* *
* @param selectionEnd the end position of the text >= 0 * @param selectionEnd the end position of the text &ge; 0
* @beaninfo * @beaninfo
* description: ending location of the selection. * description: ending location of the selection.
*/ */
...@@ -2785,7 +2785,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -2785,7 +2785,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
* if the JTextComponent is contained in a JScrollPane in which * if the JTextComponent is contained in a JScrollPane in which
* case the resulting rectangle should be composed with the parent * case the resulting rectangle should be composed with the parent
* coordinates. A good algorithm to use is: * coordinates. A good algorithm to use is:
* <nf> * <pre>
* Accessible a: * Accessible a:
* AccessibleText at = a.getAccessibleText(); * AccessibleText at = a.getAccessibleText();
* AccessibleComponent ac = a.getAccessibleComponent(); * AccessibleComponent ac = a.getAccessibleComponent();
...@@ -2793,14 +2793,14 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -2793,14 +2793,14 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
* Point p = ac.getLocation(); * Point p = ac.getLocation();
* r.x += p.x; * r.x += p.x;
* r.y += p.y; * r.y += p.y;
* </nf> * </pre>
* *
* Note: the JTextComponent must have a valid size (e.g. have * Note: the JTextComponent must have a valid size (e.g. have
* been added to a parent container whose ancestor container * been added to a parent container whose ancestor container
* is a valid top-level window) for this method to be able * is a valid top-level window) for this method to be able
* to return a meaningful (non-null) value. * to return a meaningful (non-null) value.
* *
* @param i the index into the String >= 0 * @param i the index into the String &ge; 0
* @return the screen coordinates of the character's bounding box * @return the screen coordinates of the character's bounding box
*/ */
public Rectangle getCharacterBounds(int i) { public Rectangle getCharacterBounds(int i) {
...@@ -2844,7 +2844,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -2844,7 +2844,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
/** /**
* Returns the number of characters (valid indices) * Returns the number of characters (valid indices)
* *
* @return the number of characters >= 0 * @return the number of characters &ge; 0
*/ */
public int getCharCount() { public int getCharCount() {
return model.getLength(); return model.getLength();
...@@ -2895,7 +2895,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -2895,7 +2895,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
* Return 0 if the text is empty, or the caret position * Return 0 if the text is empty, or the caret position
* if no selection. * if no selection.
* *
* @return the index into the text of the start of the selection >= 0 * @return the index into the text of the start of the selection &ge; 0
*/ */
public int getSelectionStart() { public int getSelectionStart() {
return JTextComponent.this.getSelectionStart(); return JTextComponent.this.getSelectionStart();
...@@ -2908,7 +2908,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A ...@@ -2908,7 +2908,7 @@ public abstract class JTextComponent extends JComponent implements Scrollable, A
* Return 0 if the text is empty, or the caret position * Return 0 if the text is empty, or the caret position
* if no selection. * if no selection.
* *
* @return the index into teh text of the end of the selection >= 0 * @return the index into teh text of the end of the selection &ge; 0
*/ */
public int getSelectionEnd() { public int getSelectionEnd() {
return JTextComponent.this.getSelectionEnd(); return JTextComponent.this.getSelectionEnd();
......
...@@ -39,7 +39,7 @@ import javax.swing.Icon; ...@@ -39,7 +39,7 @@ import javax.swing.Icon;
* All sizes are specified in points (such as found in postscript), a * All sizes are specified in points (such as found in postscript), a
* device independent measure. * device independent measure.
* </p> * </p>
* <p align=center><img src="doc-files/paragraph.gif" * <p style="text-align:center"><img src="doc-files/paragraph.gif"
* alt="Diagram shows SpaceAbove, FirstLineIndent, LeftIndent, RightIndent, * alt="Diagram shows SpaceAbove, FirstLineIndent, LeftIndent, RightIndent,
* and SpaceBelow a paragraph."></p> * and SpaceBelow a paragraph."></p>
* <p> * <p>
......
...@@ -184,7 +184,6 @@ import static sun.swing.SwingUtilities2.IMPLIED_CR; ...@@ -184,7 +184,6 @@ import static sun.swing.SwingUtilities2.IMPLIED_CR;
* of various methods described above.</p> * of various methods described above.</p>
* *
* <table border=1 cellspacing=0> * <table border=1 cellspacing=0>
* <caption></caption>
* <tr> * <tr>
* <th>Example</th> * <th>Example</th>
* <th><code>insertAfterStart</code></th> * <th><code>insertAfterStart</code></th>
...@@ -262,8 +261,8 @@ import static sun.swing.SwingUtilities2.IMPLIED_CR; ...@@ -262,8 +261,8 @@ import static sun.swing.SwingUtilities2.IMPLIED_CR;
* not be compatible with future Swing releases. The current * not be compatible with future Swing releases. The current
* serialization support is appropriate for short term storage or RMI * serialization support is appropriate for short term storage or RMI
* between applications running the same version of Swing. As of 1.4, * between applications running the same version of Swing. As of 1.4,
* support for long term storage of all JavaBeans<sup><font * support for long term storage of all JavaBeans&trade;
* size="-2">TM</font></sup> has been added to the * has been added to the
* <code>java.beans</code> package. Please see {@link * <code>java.beans</code> package. Please see {@link
* java.beans.XMLEncoder}.</p> * java.beans.XMLEncoder}.</p>
* *
......
...@@ -62,8 +62,8 @@ import sun.swing.DefaultLookup; ...@@ -62,8 +62,8 @@ import sun.swing.DefaultLookup;
* {@code DefaultTreeCellRenderer} property and defaults table key: * {@code DefaultTreeCellRenderer} property and defaults table key:
* <table border="1" cellpadding="1" cellspacing="0" summary=""> * <table border="1" cellpadding="1" cellspacing="0" summary="">
* <tr valign="top" align="left"> * <tr valign="top" align="left">
* <th bgcolor="#CCCCFF" align="left">Property: * <th style="background-color:#CCCCFF" align="left">Property:
* <th bgcolor="#CCCCFF" align="left">Key: * <th style="background-color:#CCCCFF" align="left">Key:
* <tr><td>"leafIcon"<td>"Tree.leafIcon" * <tr><td>"leafIcon"<td>"Tree.leafIcon"
* <tr><td>"closedIcon"<td>"Tree.closedIcon" * <tr><td>"closedIcon"<td>"Tree.closedIcon"
* <tr><td>"openIcon"<td>"Tree.openIcon" * <tr><td>"openIcon"<td>"Tree.openIcon"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册