# HG changeset patch # User yan # Date 1380027887 -14400 # Node ID 1c5d22e5b8981d1945f1fb3db383741d174e083f # Parent cafca01a8e286b349f9755827991f2e6279cd9a5 8025117: [cleanup] Eliminate doclint errors in javax/swing/text classes Reviewed-by: alexsch diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/JLayer.java --- a/jdk/src/share/classes/javax/swing/JLayer.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/JLayer.java Tue Sep 24 17:04:47 2013 +0400 @@ -44,16 +44,16 @@ * {@code JLayer} is a universal decorator for Swing components * which enables you to implement various advanced painting effects as well as * receive notifications of all {@code AWTEvent}s generated within its borders. - *

+ *

* {@code JLayer} delegates the handling of painting and input events to a * {@link javax.swing.plaf.LayerUI} object, which performs the actual decoration. - *

+ *

* The custom painting implemented in the {@code LayerUI} and events notification * work for the JLayer itself and all its subcomponents. * This combination enables you to enrich existing components * by adding new advanced functionality such as temporary locking of a hierarchy, * data tips for compound components, enhanced mouse scrolling etc and so on. - *

+ *

* {@code JLayer} is a good solution if you only need to do custom painting * over compound component or catch input events from its subcomponents. *

@@ -202,7 +202,7 @@
 
     /**
      * Returns the {@code JLayer}'s view component or {@code null}.
-     * 
This is a bound property. + *
This is a bound property. * * @return the {@code JLayer}'s view component * or {@code null} if none exists @@ -215,7 +215,7 @@ /** * Sets the {@code JLayer}'s view component, which can be {@code null}. - *
This is a bound property. + *
This is a bound property. * * @param view the view component for this {@code JLayer} * @@ -257,7 +257,7 @@ /** * Returns the {@code JLayer}'s glassPane component or {@code null}. - *
This is a bound property. + *
This is a bound property. * * @return the {@code JLayer}'s glassPane component * or {@code null} if none exists @@ -270,7 +270,7 @@ /** * Sets the {@code JLayer}'s glassPane component, which can be {@code null}. - *
This is a bound property. + *
This is a bound property. * * @param glassPane the glassPane component of this {@code JLayer} * @@ -309,7 +309,7 @@ /** * Sets the layout manager for this container. This method is * overridden to prevent the layout manager from being set. - *

Note: If {@code mgr} is non-{@code null}, this + *

Note: If {@code mgr} is non-{@code null}, this * method will throw an exception as layout managers are not supported on * a {@code JLayer}. * @@ -327,7 +327,7 @@ * of this component from becoming complex enough to inhibit * subclassing of {@code LayerUI} class. To create a {@code JLayer} with a border, * add it to a {@code JPanel} that has a border. - *

Note: If {@code border} is non-{@code null}, this + *

Note: If {@code border} is non-{@code null}, this * method will throw an exception as borders are not supported on * a {@code JLayer}. * @@ -471,11 +471,11 @@ * defined by the specified event mask parameter * to be delivered to the * {@link LayerUI#eventDispatched(AWTEvent, JLayer)} method. - *

+ *

* Events are delivered provided that {@code LayerUI} is set * for this {@code JLayer} and the {@code JLayer} * is displayable. - *

+ *

* The following example shows how to correctly use this method * in the {@code LayerUI} implementations: *

@@ -519,10 +519,10 @@
     /**
      * Returns the bitmap of event mask to receive by this {@code JLayer}
      * and its {@code LayerUI}.
-     * 

+ *

* It means that {@link javax.swing.plaf.LayerUI#eventDispatched(AWTEvent, JLayer)} method * will only receive events that match the event mask. - *

+ *

* By default {@code JLayer} receives no events. * * @return the bitmask of event types to receive for this {@code JLayer} @@ -543,7 +543,7 @@ /** * Returns the preferred size of the viewport for a view component. - *

+ *

* If the view component of this layer implements {@link Scrollable}, this method delegates its * implementation to the view component. * @@ -562,7 +562,7 @@ * Returns a scroll increment, which is required for components * that display logical rows or columns in order to completely expose * one block of rows or columns, depending on the value of orientation. - *

+ *

* If the view component of this layer implements {@link Scrollable}, this method delegates its * implementation to the view component. * @@ -584,7 +584,7 @@ * Returns {@code false} to indicate that the height of the viewport does not * determine the height of the layer, unless the preferred height * of the layer is smaller than the height of the viewport. - *

+ *

* If the view component of this layer implements {@link Scrollable}, this method delegates its * implementation to the view component. * @@ -603,7 +603,7 @@ * Returns {@code false} to indicate that the width of the viewport does not * determine the width of the layer, unless the preferred width * of the layer is smaller than the width of the viewport. - *

+ *

* If the view component of this layer implements {@link Scrollable}, this method delegates its * implementation to the view component. * @@ -624,10 +624,10 @@ * one new row or column, depending on the value of orientation. * Ideally, components should handle a partially exposed row or column * by returning the distance required to completely expose the item. - *

+ *

* Scrolling containers, like {@code JScrollPane}, will use this method * each time the user requests a unit scroll. - *

+ *

* If the view component of this layer implements {@link Scrollable}, this method delegates its * implementation to the view component. * diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/RowFilter.java --- a/jdk/src/share/classes/javax/swing/RowFilter.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/RowFilter.java Tue Sep 24 17:04:47 2013 +0400 @@ -357,7 +357,7 @@ * * @param index the index of the value to get * @return value at the specified index - * @throws IndexOutOfBoundsException if index < 0 or + * @throws IndexOutOfBoundsException if index < 0 or * >= getValueCount */ public abstract Object getValue(int index); @@ -376,7 +376,7 @@ * * @param index the index of the value to get * @return {@code non-null} string at the specified index - * @throws IndexOutOfBoundsException if index < 0 || + * @throws IndexOutOfBoundsException if index < 0 || * >= getValueCount */ public String getStringValue(int index) { diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/plaf/TextUI.java --- a/jdk/src/share/classes/javax/swing/plaf/TextUI.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/TextUI.java Tue Sep 24 17:04:47 2013 +0400 @@ -42,7 +42,7 @@ * Converts the given location in the model to a place in * the view coordinate system. * - * @param pos the local location in the model to translate >= 0 + * @param pos the local location in the model to translate >= 0 * @return the coordinates as a rectangle * @exception BadLocationException if the given position does not * represent a valid location in the associated document @@ -53,7 +53,7 @@ * Converts the given location in the model to a place in * the view coordinate system. * - * @param pos the local location in the model to translate >= 0 + * @param pos the local location in the model to translate >= 0 * @return the coordinates as a rectangle * @exception BadLocationException if the given position does not * represent a valid location in the associated document @@ -67,7 +67,7 @@ * @param pt the location in the view to translate. This * should be in the same coordinate system as the mouse * events. - * @return the offset from the start of the document >= 0 + * @return the offset from the start of the document >= 0 */ public abstract int viewToModel(JTextComponent t, Point pt); @@ -84,7 +84,7 @@ * character in the model * * @return the location within the model that best represents the - * given point in the view >= 0 + * given point in the view >= 0 */ public abstract int viewToModel(JTextComponent t, Point pt, Position.Bias[] biasReturn); @@ -96,7 +96,7 @@ * might not allow access to some of the locations in the model. * * @param t the text component for which this UI is installed - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param b the bias for the position * @param direction the direction from the current position that can * be thought of as the arrow keys typically found on a keyboard. @@ -117,8 +117,8 @@ * Causes the portion of the view responsible for the * given part of the model to be repainted. * - * @param p0 the beginning of the range >= 0 - * @param p1 the end of the range >= p0 + * @param p0 the beginning of the range >= 0 + * @param p1 the end of the range >= p0 */ public abstract void damageRange(JTextComponent t, int p0, int p1); @@ -126,8 +126,8 @@ * Causes the portion of the view responsible for the * given part of the model to be repainted. * - * @param p0 the beginning of the range >= 0 - * @param p1 the end of the range >= p0 + * @param p0 the beginning of the range >= 0 + * @param p1 the end of the range >= p0 */ public abstract void damageRange(JTextComponent t, int p0, int p1, Position.Bias firstBias, diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/plaf/basic/BasicTextUI.java --- a/jdk/src/share/classes/javax/swing/plaf/basic/BasicTextUI.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/plaf/basic/BasicTextUI.java Tue Sep 24 17:04:47 2013 +0400 @@ -1012,7 +1012,7 @@ * this translation to be computed. * * @param tc the text component for which this UI is installed - * @param pos the local location in the model to translate >= 0 + * @param pos the local location in the model to translate >= 0 * @return the coordinates as a rectangle, null if the model is not painted * @exception BadLocationException if the given position does not * represent a valid location in the associated document @@ -1029,7 +1029,7 @@ * this translation to be computed. * * @param tc the text component for which this UI is installed - * @param pos the local location in the model to translate >= 0 + * @param pos the local location in the model to translate >= 0 * @return the coordinates as a rectangle, null if the model is not painted * @exception BadLocationException if the given position does not * represent a valid location in the associated document @@ -1066,7 +1066,7 @@ * @param tc the text component for which this UI is installed * @param pt the location in the view to translate. This * should be in the same coordinate system as the mouse events. - * @return the offset from the start of the document >= 0, + * @return the offset from the start of the document >= 0, * -1 if not painted * @see TextUI#viewToModel */ @@ -1083,7 +1083,7 @@ * @param tc the text component for which this UI is installed * @param pt the location in the view to translate. This * should be in the same coordinate system as the mouse events. - * @return the offset from the start of the document >= 0, + * @return the offset from the start of the document >= 0, * -1 if the component doesn't yet have a positive size. * @see TextUI#viewToModel */ @@ -1141,8 +1141,8 @@ * the view is not currently painted. * * @param tc the text component for which this UI is installed - * @param p0 the beginning of the range >= 0 - * @param p1 the end of the range >= p0 + * @param p0 the beginning of the range >= 0 + * @param p1 the end of the range >= p0 * @see TextUI#damageRange */ public void damageRange(JTextComponent tc, int p0, int p1) { @@ -1153,8 +1153,8 @@ * Causes the portion of the view responsible for the * given part of the model to be repainted. * - * @param p0 the beginning of the range >= 0 - * @param p1 the end of the range >= p0 + * @param p0 the beginning of the range >= 0 + * @param p1 the end of the range >= p0 */ public void damageRange(JTextComponent t, int p0, int p1, Position.Bias p0Bias, Position.Bias p1Bias) { @@ -1271,8 +1271,8 @@ * it is unable to represent the part of the element. * * @param elem the element - * @param p0 the starting offset >= 0 - * @param p1 the ending offset >= p0 + * @param p0 the starting offset >= 0 + * @param p1 the ending offset >= p0 * @return the view */ public View create(Element elem, int p0, int p1) { @@ -1471,7 +1471,7 @@ * the model. This is implemented to return the index of the only * child. * - * @param pos the position >= 0 + * @param pos the position >= 0 * @return index of the view representing the given position, or * -1 if no view represents that position * @since 1.3 @@ -1515,11 +1515,11 @@ * Provides a mapping from the document model coordinate space * to the coordinate space of the view mapped to it. * - * @param p0 the position to convert >= 0 + * @param p0 the position to convert >= 0 * @param b0 the bias toward the previous character or the * next character represented by p0, in case the * position is a boundary of two views. - * @param p1 the position to convert >= 0 + * @param p1 the position to convert >= 0 * @param b1 the bias toward the previous character or the * next character represented by p1, in case the * position is a boundary of two views. @@ -1561,7 +1561,7 @@ * they might not be in the same order found in the model, or they just * might not allow access to some of the locations in the model. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param a the allocated region to render into * @param direction the direction from the current position that can * be thought of as the arrow keys typically found on a keyboard. diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/AttributeSet.java --- a/jdk/src/share/classes/javax/swing/text/AttributeSet.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/AttributeSet.java Tue Sep 24 17:04:47 2013 +0400 @@ -71,7 +71,7 @@ * This interface is the type signature that is expected * to be present on any attribute key that contributes to * character level presentation. This would be any attribute - * that applies to a so-called run of + * that applies to a so-called run of * style. */ public interface CharacterAttribute { diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/BadLocationException.java --- a/jdk/src/share/classes/javax/swing/text/BadLocationException.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/BadLocationException.java Tue Sep 24 17:04:47 2013 +0400 @@ -46,7 +46,7 @@ * Creates a new BadLocationException object. * * @param s a string indicating what was wrong with the arguments - * @param offs offset within the document that was requested >= 0 + * @param offs offset within the document that was requested >= 0 */ public BadLocationException(String s, int offs) { super(s); @@ -56,7 +56,7 @@ /** * Returns the offset into the document that was not legal. * - * @return the offset >= 0 + * @return the offset >= 0 */ public int offsetRequested() { return offs; diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/BoxView.java --- a/jdk/src/share/classes/javax/swing/text/BoxView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/BoxView.java Tue Sep 24 17:04:47 2013 +0400 @@ -154,7 +154,7 @@ * * @param g the graphics context * @param alloc the allocated region to paint into - * @param index the child index, >= 0 && < getViewCount() + * @param index the child index, >= 0 && < getViewCount() */ protected void paintChild(Graphics g, Rectangle alloc, int index) { View child = getView(index); @@ -170,9 +170,9 @@ * will have an offset and span of 0. * * @param index the starting index into the child views to insert - * the new views; this should be a value >= 0 and <= getViewCount + * the new views; this should be a value >= 0 and <= getViewCount * @param length the number of existing child views to remove; - * This should be a value >= 0 and <= (getViewCount() - offset) + * This should be a value >= 0 and <= (getViewCount() - offset) * @param elems the child views to add; this value can be * nullto indicate no children are being added * (useful to remove) @@ -390,8 +390,8 @@ * information. This is implemented to call the * layout method with the sizes inside of the insets. * - * @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) { layout(Math.max(0, (int)(width - getLeftInset() - getRightInset())), @@ -442,7 +442,7 @@ * null if the layout is invalid, * otherwise the superclass behavior is executed. * - * @param index the index of the child, >= 0 && < getViewCount() + * @param index the index of the child, >= 0 && > getViewCount() * @param a the allocation to this view * @return the allocation to the child; or null * if a is null; @@ -469,7 +469,7 @@ * to the coordinate space of the view mapped to it. This makes * sure the allocation is valid before calling the superclass. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param a the allocated region to render into * @return the bounding box of the given position * @exception BadLocationException if the given position does @@ -488,11 +488,11 @@ * Provides a mapping from the view coordinate space to the logical * coordinate space of the model. * - * @param x x coordinate of the view location to convert >= 0 - * @param y y coordinate of the view location to convert >= 0 + * @param x x coordinate of the view location to convert >= 0 + * @param y y coordinate of the view location to convert >= 0 * @param a the allocated region to render into * @return the location within the model that best represents the - * given point in the view >= 0 + * given point in the view >= 0 * @see View#viewToModel */ public int viewToModel(float x, float y, Shape a, Position.Bias[] bias) { @@ -513,7 +513,7 @@ * * @param axis may be either View.X_AXIS * or View.Y_AXIS - * @return the desired alignment >= 0.0f && <= 1.0f; this should + * @return the desired alignment >= 0.0f && <= 1.0f; this should * be a value between 0.0 and 1.0 where 0 indicates alignment at the * origin and 1.0 indicates alignment to the full span * away from the origin; an alignment of 0.5 would be the @@ -535,7 +535,7 @@ * * @param axis may be either View.X_AXIS * or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0; + * @return the span the view would like to be rendered into >= 0; * typically the view is told to render into the span * that is returned, although there is no guarantee; * the parent may choose to resize or break the view @@ -558,7 +558,7 @@ * * @param axis may be either View.X_AXIS * or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0; + * @return the span the view would like to be rendered into >= 0; * typically the view is told to render into the span * that is returned, although there is no guarantee; * the parent may choose to resize or break the view @@ -581,7 +581,7 @@ * * @param axis may be either View.X_AXIS * or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0; + * @return the span the view would like to be rendered into >= 0; * typically the view is told to render into the span * that is returned, although there is no guarantee; * the parent may choose to resize or break the view @@ -613,8 +613,8 @@ /** * Determines if a point falls before an allocated region. * - * @param x the X coordinate >= 0 - * @param y the Y coordinate >= 0 + * @param x the X coordinate >= 0 + * @param y the Y coordinate >= 0 * @param innerAlloc the allocated region; this is the area * inside of the insets * @return true if the point lies before the region else false @@ -630,8 +630,8 @@ /** * Determines if a point falls after an allocated region. * - * @param x the X coordinate >= 0 - * @param y the Y coordinate >= 0 + * @param x the X coordinate >= 0 + * @param y the Y coordinate >= 0 * @param innerAlloc the allocated region; this is the area * inside of the insets * @return true if the point lies after the region else false @@ -647,8 +647,8 @@ /** * Fetches the child view at the given coordinates. * - * @param x the X coordinate >= 0 - * @param y the Y coordinate >= 0 + * @param x the X coordinate >= 0 + * @param y the Y coordinate >= 0 * @param alloc the parents inner allocation on entry, which should * be changed to the childs allocation on exit * @return the view @@ -688,7 +688,7 @@ * Allocates a region for a child view. * * @param index the index of the child view to - * allocate, >= 0 && < getViewCount() + * allocate, >= 0 && < getViewCount() * @param alloc the allocated region */ protected void childAllocation(int index, Rectangle alloc) { @@ -701,8 +701,8 @@ /** * Perform layout on the box * - * @param width the width (inside of the insets) >= 0 - * @param height the height (inside of the insets) >= 0 + * @param width the width (inside of the insets) >= 0 + * @param height the height (inside of the insets) >= 0 */ protected void layout(int width, int height) { setSpanOnAxis(X_AXIS, width); diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/Caret.java --- a/jdk/src/share/classes/javax/swing/text/Caret.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/Caret.java Tue Sep 24 17:04:47 2013 +0400 @@ -149,7 +149,7 @@ * and how fast the caret blinks, commonly used as one * way to attract attention to the caret. * - * @param rate the delay in milliseconds >= 0. If this is + * @param rate the delay in milliseconds >=0. If this is * zero the caret will not blink. */ public void setBlinkRate(int rate); @@ -159,7 +159,7 @@ * and how fast the caret blinks, commonly used as one * way to attract attention to the caret. * - * @return the delay in milliseconds >= 0. If this is + * @return the delay in milliseconds >=0. If this is * zero the caret will not blink. */ public int getBlinkRate(); @@ -167,7 +167,7 @@ /** * Fetches the current position of the caret. * - * @return the position >= 0 + * @return the position >=0 */ public int getDot(); @@ -176,7 +176,7 @@ * is a selection, the mark will not be the same as * the dot. * - * @return the position >= 0 + * @return the position >=0 */ public int getMark(); @@ -197,7 +197,7 @@ * leaving behind the mark. This is useful for * making selections. * - * @param dot the new position to move the caret to >= 0 + * @param dot the new position to move the caret to >=0 */ public void moveDot(int dot); diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/ComponentView.java --- a/jdk/src/share/classes/javax/swing/text/ComponentView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/ComponentView.java Tue Sep 24 17:04:47 2013 +0400 @@ -125,7 +125,7 @@ * axis of interest. * * @param axis may be either View.X_AXIS or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0. + * @return the span the view would like to be rendered into >=0. * Typically the view is told to render into the span * that is returned, although there is no guarantee. * The parent may choose to resize or break the view. @@ -153,7 +153,7 @@ * axis of interest. * * @param axis may be either View.X_AXIS or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0. + * @return the span the view would like to be rendered into >=0. * Typically the view is told to render into the span * that is returned, although there is no guarantee. * The parent may choose to resize or break the view. @@ -181,7 +181,7 @@ * axis of interest. * * @param axis may be either View.X_AXIS or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0. + * @return the span the view would like to be rendered into >=0. * Typically the view is told to render into the span * that is returned, although there is no guarantee. * The parent may choose to resize or break the view. @@ -319,7 +319,7 @@ * Provides a mapping from the coordinate space of the model to * that of the view. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >=0 * @param a the allocated region to render into * @return the bounding box of the given position is returned * @exception BadLocationException if the given position does not @@ -344,8 +344,8 @@ * Provides a mapping from the view coordinate space to the logical * coordinate space of the model. * - * @param x the X coordinate >= 0 - * @param y the Y coordinate >= 0 + * @param x the X coordinate >=0 + * @param y the Y coordinate >=0 * @param a the allocated region to render into * @return the location within the model that best represents * the given point in the view diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/CompositeView.java --- a/jdk/src/share/classes/javax/swing/text/CompositeView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/CompositeView.java Tue Sep 24 17:04:47 2013 +0400 @@ -143,7 +143,7 @@ /** * Returns the number of child views of this view. * - * @return the number of views >= 0 + * @return the number of views >= 0 * @see #getView */ public int getViewCount() { @@ -153,7 +153,7 @@ /** * Returns the n-th view in this container. * - * @param n the number of the desired view, >= 0 && < getViewCount() + * @param n the number of the desired view, >= 0 && < getViewCount() * @return the view at index n */ public View getView(int n) { @@ -169,9 +169,9 @@ * may be garbage collected. * * @param offset the starting index into the child views to insert - * the new views; >= 0 and <= getViewCount + * the new views; >= 0 and <= getViewCount * @param length the number of existing child views to remove; - * this should be a value >= 0 and <= (getViewCount() - offset) + * this should be a value >= 0 and <= (getViewCount() - offset) * @param views the child views to add; this value can be * null * to indicate no children are being added (useful to remove) @@ -223,7 +223,7 @@ * render into. This enables finding out where various views * are located. * - * @param index the index of the child, >= 0 && < getViewCount() + * @param index the index of the child, >= 0 && < getViewCount() * @param a the allocation to this view * @return the allocation to the child */ @@ -237,7 +237,7 @@ * Provides a mapping from the document model coordinate space * to the coordinate space of the view mapped to it. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param a the allocated region to render into * @param b a bias value of either Position.Bias.Forward * or Position.Bias.Backward @@ -280,13 +280,13 @@ * Provides a mapping from the document model coordinate space * to the coordinate space of the view mapped to it. * - * @param p0 the position to convert >= 0 + * @param p0 the position to convert >= 0 * @param b0 the bias toward the previous character or the * next character represented by p0, in case the * position is a boundary of two views; either * Position.Bias.Forward or * Position.Bias.Backward - * @param p1 the position to convert >= 0 + * @param p1 the position to convert >= 0 * @param b1 the bias toward the previous character or the * next character represented by p1, in case the * position is a boundary of two views @@ -378,13 +378,13 @@ * Provides a mapping from the view coordinate space to the logical * coordinate space of the model. * - * @param x x coordinate of the view location to convert >= 0 - * @param y y coordinate of the view location to convert >= 0 + * @param x x coordinate of the view location to convert >= 0 + * @param y y coordinate of the view location to convert >= 0 * @param a the allocated region to render into * @param bias either Position.Bias.Forward or * Position.Bias.Backward * @return the location within the model that best represents the - * given point in the view >= 0 + * given point in the view >= 0 * @see View#viewToModel */ public int viewToModel(float x, float y, Shape a, Position.Bias[] bias) { @@ -436,7 +436,7 @@ * This is a convenience method for {@link #getNextNorthSouthVisualPositionFrom} * and {@link #getNextEastWestVisualPositionFrom}. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param b a bias value of either Position.Bias.Forward * or Position.Bias.Backward * @param a the allocated region to render into @@ -484,7 +484,7 @@ * getViewIndexByPosition * method for backward compatibility. * - * @param pos the position >= 0 + * @param pos the position >= 0 * @return index of the view representing the given position, or * -1 if no view represents that position * @since 1.3 @@ -505,8 +505,8 @@ /** * Tests whether a point lies before the rectangle range. * - * @param x the X coordinate >= 0 - * @param y the Y coordinate >= 0 + * @param x the X coordinate >= 0 + * @param y the Y coordinate >= 0 * @param alloc the rectangle * @return true if the point is before the specified range */ @@ -515,8 +515,8 @@ /** * Tests whether a point lies after the rectangle range. * - * @param x the X coordinate >= 0 - * @param y the Y coordinate >= 0 + * @param x the X coordinate >= 0 + * @param y the Y coordinate >= 0 * @param alloc the rectangle * @return true if the point is after the specified range */ @@ -525,8 +525,8 @@ /** * Fetches the child view at the given coordinates. * - * @param x the X coordinate >= 0 - * @param y the Y coordinate >= 0 + * @param x the X coordinate >= 0 + * @param y the Y coordinate >= 0 * @param alloc the parent's allocation on entry, which should * be changed to the child's allocation on exit * @return the child view @@ -536,7 +536,7 @@ /** * Returns the allocation for a given child. * - * @param index the index of the child, >= 0 && < getViewCount() + * @param index the index of the child, >= 0 && < getViewCount() * @param a the allocation to the interior of the box on entry, * and the allocation of the child view at the index on exit. */ @@ -547,7 +547,7 @@ * the model. This is implemented to fetch the view in the case * where there is a child view for each child element. * - * @param pos the position >= 0 + * @param pos the position >= 0 * @param a the allocation to the interior of the box on entry, * and the allocation of the view containing the position on exit * @return the view representing the given position, or @@ -570,7 +570,7 @@ * the model. This is implemented to fetch the view in the case * where there is a child view for each child element. * - * @param pos the position >= 0 + * @param pos the position >= 0 * @return index of the view representing the given position, or * -1 if no view represents that position */ @@ -639,10 +639,10 @@ /** * Sets the insets for the view. * - * @param top the top inset >= 0 - * @param left the left inset >= 0 - * @param bottom the bottom inset >= 0 - * @param right the right inset >= 0 + * @param top the top inset >= 0 + * @param left the left inset >= 0 + * @param bottom the bottom inset >= 0 + * @param right the right inset >= 0 */ protected void setInsets(short top, short left, short bottom, short right) { this.top = top; @@ -654,7 +654,7 @@ /** * Gets the left inset. * - * @return the inset >= 0 + * @return the inset >= 0 */ protected short getLeftInset() { return left; @@ -663,7 +663,7 @@ /** * Gets the right inset. * - * @return the inset >= 0 + * @return the inset >= 0 */ protected short getRightInset() { return right; @@ -672,7 +672,7 @@ /** * Gets the top inset. * - * @return the inset >= 0 + * @return the inset >= 0 */ protected short getTopInset() { return top; @@ -681,7 +681,7 @@ /** * Gets the bottom inset. * - * @return the inset >= 0 + * @return the inset >= 0 */ protected short getBottomInset() { return bottom; @@ -691,7 +691,7 @@ * Returns the next visual position for the cursor, in either the * north or south direction. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param b a bias value of either Position.Bias.Forward * or Position.Bias.Backward * @param a the allocated region to render into @@ -723,7 +723,7 @@ * Returns the next visual position for the cursor, in either the * east or west direction. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param b a bias value of either Position.Bias.Forward * or Position.Bias.Backward * @param a the allocated region to render into diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/DefaultEditorKit.java --- a/jdk/src/share/classes/javax/swing/text/DefaultEditorKit.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/DefaultEditorKit.java Tue Sep 24 17:04:47 2013 +0400 @@ -140,7 +140,7 @@ * @param in The stream to read from * @param doc The destination for the insertion. * @param pos The location in the document to place the - * content >= 0. + * content >=0. * @exception IOException on any I/O error * @exception BadLocationException if pos represents an invalid * location within the document. @@ -158,8 +158,8 @@ * @param out The stream to write to * @param doc The source for the write. * @param pos The location in the document to fetch the - * content >= 0. - * @param len The amount to write out >= 0. + * content >=0. + * @param len The amount to write out >=0. * @exception IOException on any I/O error * @exception BadLocationException if pos represents an invalid * location within the document. @@ -191,7 +191,7 @@ * @param in The stream to read from * @param doc The destination for the insertion. * @param pos The location in the document to place the - * content >= 0. + * content >=0. * @exception IOException on any I/O error * @exception BadLocationException if pos represents an invalid * location within the document. @@ -300,8 +300,8 @@ * @param out The stream to write to * @param doc The source for the write. * @param pos The location in the document to fetch the - * content from >= 0. - * @param len The amount to write out >= 0. + * content from >=0. + * @param len The amount to write out >=0. * @exception IOException on any I/O error * @exception BadLocationException if pos is not within 0 and * the length of the document. diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/DefaultHighlighter.java --- a/jdk/src/share/classes/javax/swing/text/DefaultHighlighter.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/DefaultHighlighter.java Tue Sep 24 17:04:47 2013 +0400 @@ -105,8 +105,8 @@ * Adds a highlight to the view. Returns a tag that can be used * to refer to the highlight. * - * @param p0 the start offset of the range to highlight >= 0 - * @param p1 the end offset of the range to highlight >= p0 + * @param p0 the start offset of the range to highlight >= 0 + * @param p1 the end offset of the range to highlight >= p0 * @param p the painter to use to actually render the highlight * @return an object that can be used as a tag * to refer to the highlight @@ -220,8 +220,8 @@ * Changes a highlight. * * @param tag the highlight tag - * @param p0 the beginning of the range >= 0 - * @param p1 the end of the range >= p0 + * @param p0 the beginning of the range >= 0 + * @param p1 the end of the range >= p0 * @exception BadLocationException if the specified location is invalid */ public void changeHighlight(Object tag, int p0, int p1) throws BadLocationException { @@ -395,8 +395,8 @@ * Paints a highlight. * * @param g the graphics context - * @param offs0 the starting model offset >= 0 - * @param offs1 the ending model offset >= offs1 + * @param offs0 the starting model offset >= 0 + * @param offs1 the ending model offset >= offs1 * @param bounds the bounding box for the highlight * @param c the editor */ @@ -441,8 +441,8 @@ * Paints a portion of a highlight. * * @param g the graphics context - * @param offs0 the starting model offset >= 0 - * @param offs1 the ending model offset >= offs1 + * @param offs0 the starting model offset >= 0 + * @param offs1 the ending model offset >= offs1 * @param bounds the bounding box of the view, which is not * necessarily the region to paint. * @param c the editor diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/DefaultStyledDocument.java --- a/jdk/src/share/classes/javax/swing/text/DefaultStyledDocument.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/DefaultStyledDocument.java Tue Sep 24 17:04:47 2013 +0400 @@ -176,7 +176,7 @@ * Concurrency * in Swing for more information. * - * @param offset the starting offset >= 0 + * @param offset the starting offset >= 0 * @param data the element data * @exception BadLocationException for an invalid starting offset */ @@ -429,7 +429,7 @@ * Concurrency * in Swing for more information. * - * @param pos the offset from the start of the document >= 0 + * @param pos the offset from the start of the document >= 0 * @param s the logical style to assign to the paragraph, null if none */ public void setLogicalStyle(int pos, Style s) { @@ -458,7 +458,7 @@ * represented by the given position. * * @param p the location to translate to a paragraph - * and determine the logical style assigned >= 0. This + * and determine the logical style assigned >= 0. This * is an offset from the start of the document. * @return the style, null if none */ @@ -486,8 +486,8 @@ * Concurrency * in Swing for more information. * - * @param offset the offset in the document >= 0 - * @param length the length >= 0 + * @param offset the offset in the document >= 0 + * @param length the length >= 0 * @param s the attributes * @param replace true if the previous attributes should be replaced * before setting the new attributes @@ -539,8 +539,8 @@ * Concurrency * in Swing for more information. * - * @param offset the offset into the paragraph >= 0 - * @param length the number of characters affected >= 0 + * @param offset the offset into the paragraph >= 0 + * @param length the number of characters affected >= 0 * @param s the attributes * @param replace whether to replace existing attributes, or merge them */ @@ -589,7 +589,7 @@ * A paragraph consists of at least one child Element, which is usually * a leaf. * - * @param pos the starting offset >= 0 + * @param pos the starting offset >= 0 * @return the element */ public Element getParagraphElement(int pos) { @@ -606,7 +606,7 @@ /** * Gets a character element based on a position. * - * @param pos the position in the document >= 0 + * @param pos the position in the document >= 0 * @return the element */ public Element getCharacterElement(int pos) { @@ -1233,7 +1233,7 @@ * @param a the attributes for the element * @param type the type of the element (StartTagType, EndTagType, * ContentType) - * @param len the length >= 0 + * @param len the length >= 0 */ public ElementSpec(AttributeSet a, short type, int len) { this(a, type, null, 0, len); @@ -1247,8 +1247,8 @@ * @param type the type of the element (StartTagType, EndTagType, * ContentType) * @param txt the text for the element - * @param offs the offset into the text >= 0 - * @param len the length of the text >= 0 + * @param offs the offset into the text >= 0 + * @param len the length of the text >= 0 */ public ElementSpec(AttributeSet a, short type, char[] txt, int offs, int len) { @@ -1321,7 +1321,7 @@ /** * Gets the starting offset. * - * @return the offset >= 0 + * @return the offset >= 0 */ public int getOffset() { return offs; @@ -1330,7 +1330,7 @@ /** * Gets the length. * - * @return the length >= 0 + * @return the length >= 0 */ public int getLength() { return len; @@ -1420,8 +1420,8 @@ /** * Inserts new content. * - * @param offset the starting offset >= 0 - * @param length the length >= 0 + * @param offset the starting offset >= 0 + * @param length the length >= 0 * @param data the data to insert * @param de the event capturing this edit */ @@ -1500,8 +1500,8 @@ /** * Removes content. * - * @param offset the starting offset >= 0 - * @param length the length >= 0 + * @param offset the starting offset >= 0 + * @param length the length >= 0 * @param de the event capturing this edit */ public void remove(int offset, int length, DefaultDocumentEvent de) { @@ -1513,8 +1513,8 @@ /** * Changes content. * - * @param offset the starting offset >= 0 - * @param length the length >= 0 + * @param offset the starting offset >= 0 + * @param length the length >= 0 * @param de the event capturing this edit */ public void change(int offset, int length, DefaultDocumentEvent de) { diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/Document.java --- a/jdk/src/share/classes/javax/swing/text/Document.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/Document.java Tue Sep 24 17:04:47 2013 +0400 @@ -58,9 +58,9 @@ *

The following methods give access to the character data * that makes up the content. *

*

Structure *

@@ -79,8 +79,8 @@ * AttributeSet interface. *

The following methods give access to the document structure. *

* *

Mutations @@ -93,9 +93,9 @@ *

The following methods are related to mutation of the * document content: *

* *

Notification @@ -161,8 +161,8 @@ * and the TitleProperty, which can be used to * name the Document. The methods related to the properties are: *

* *

For more information on the Document class, see diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/DocumentFilter.java --- a/jdk/src/share/classes/javax/swing/text/DocumentFilter.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/DocumentFilter.java Tue Sep 24 17:04:47 2013 +0400 @@ -68,8 +68,8 @@ * necessary. * * @param fb FilterBypass that can be used to mutate Document - * @param offset the offset from the beginning >= 0 - * @param length the number of characters to remove >= 0 + * @param offset the offset from the beginning >= 0 + * @param length the number of characters to remove >= 0 * @exception BadLocationException some portion of the removal range * was not a valid part of the document. The location in the exception * is the first bad position encountered. @@ -86,7 +86,7 @@ * necessary, or call directly into the FilterBypass. * * @param fb FilterBypass that can be used to mutate Document - * @param offset the offset into the document to insert the content >= 0. + * @param offset the offset into the document to insert the content >= 0. * All positions that track change at or after the given location * will move. * @param string the string to insert @@ -141,8 +141,8 @@ * Removes the specified region of text, bypassing the * DocumentFilter. * - * @param offset the offset from the beginning >= 0 - * @param length the number of characters to remove >= 0 + * @param offset the offset from the beginning >= 0 + * @param length the number of characters to remove >= 0 * @exception BadLocationException some portion of the removal range * was not a valid part of the document. The location in the * exception is the first bad position encountered. @@ -154,7 +154,7 @@ * Inserts the specified text, bypassing the * DocumentFilter. * @param offset the offset into the document to insert the - * content >= 0. All positions that track change at or after the + * content >= 0. All positions that track change at or after the * given location will move. * @param string the string to insert * @param attr the attributes to associate with the inserted diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/EditorKit.java --- a/jdk/src/share/classes/javax/swing/text/EditorKit.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/EditorKit.java Tue Sep 24 17:04:47 2013 +0400 @@ -55,7 +55,7 @@ /** * Creates a copy of the editor kit. This is implemented - * to use Object.clone. If the kit cannot be cloned, + * to use Object.clone(). If the kit cannot be cloned, * null is returned. * * @return the copy @@ -139,7 +139,7 @@ * @param in The stream to read from * @param doc The destination for the insertion. * @param pos The location in the document to place the - * content >= 0. + * content >= 0. * @exception IOException on any I/O error * @exception BadLocationException if pos represents an invalid * location within the document. @@ -154,8 +154,8 @@ * @param out The stream to write to * @param doc The source for the write. * @param pos The location in the document to fetch the - * content from >= 0. - * @param len The amount to write out >= 0. + * content from >= 0. + * @param len The amount to write out >= 0. * @exception IOException on any I/O error * @exception BadLocationException if pos represents an invalid * location within the document. @@ -176,7 +176,7 @@ * @param in The stream to read from * @param doc The destination for the insertion. * @param pos The location in the document to place the - * content >= 0. + * content >= 0. * @exception IOException on any I/O error * @exception BadLocationException if pos represents an invalid * location within the document. @@ -196,8 +196,8 @@ * @param out The stream to write to * @param doc The source for the write. * @param pos The location in the document to fetch the - * content >= 0. - * @param len The amount to write out >= 0. + * content >= 0. + * @param len The amount to write out >= 0. * @exception IOException on any I/O error * @exception BadLocationException if pos represents an invalid * location within the document. diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/FieldView.java --- a/jdk/src/share/classes/javax/swing/text/FieldView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/FieldView.java Tue Sep 24 17:04:47 2013 +0400 @@ -200,7 +200,7 @@ * axis. * * @param axis may be either View.X_AXIS or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0. + * @return the span the view would like to be rendered into >= 0. * Typically the view is told to render into the span * that is returned, although there is no guarantee. * The parent may choose to resize or break the view. @@ -241,7 +241,7 @@ * given axis. A value of 0 or less is not resizable. * * @param axis View.X_AXIS or View.Y_AXIS - * @return the weight -> 1 for View.X_AXIS, else 0 + * @return the weight -> 1 for View.X_AXIS, else 0 */ public int getResizeWeight(int axis) { if (axis == View.X_AXIS) { @@ -254,7 +254,7 @@ * Provides a mapping from the document model coordinate space * to the coordinate space of the view mapped to it. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param a the allocated region to render into * @return the bounding box of the given position * @exception BadLocationException if the given position does not @@ -269,8 +269,8 @@ * Provides a mapping from the view coordinate space to the logical * coordinate space of the model. * - * @param fx the X coordinate >= 0.0f - * @param fy the Y coordinate >= 0.0f + * @param fx the X coordinate >= 0.0f + * @param fy the Y coordinate >= 0.0f * @param a the allocated region to render into * @return the location within the model that best represents the * given point in the view diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/FlowView.java --- a/jdk/src/share/classes/javax/swing/text/FlowView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/FlowView.java Tue Sep 24 17:04:47 2013 +0400 @@ -88,7 +88,7 @@ * is returned. * * @param index the index of the row being updated. - * This should be a value >= 0 and < getViewCount(). + * This should be a value >= 0 and < getViewCount(). * @see #getFlowStart */ public int getFlowSpan(int index) { @@ -103,7 +103,7 @@ * for the row constraints. * @param index the index of the row being updated. - * This should be a value >= 0 and < getViewCount(). + * This should be a value >= 0 and < getViewCount(). * @see #getFlowSpan */ public int getFlowStart(int index) { @@ -147,7 +147,7 @@ * Fetches the child view index representing the given position in * the model. * - * @param pos the position >= 0 + * @param pos the position >= 0 * @return index of the view representing the given position, or * -1 if no view represents that position */ @@ -175,9 +175,9 @@ * a preferenceChanged is called. Following all of that, * the normal box layout of the superclass is performed. * - * @param width the width to lay out against >= 0. This is + * @param width the width to lay out against >= 0. This is * the width inside of the inset area. - * @param height the height to lay out against >= 0 This + * @param height the height to lay out against >= 0 This * is the height inside of the inset area. */ protected void layout(int width, int height) { @@ -580,7 +580,7 @@ * * @param rowIndex the row to adjust to the current layout * span. - * @param desiredSpan the current layout span >= 0 + * @param desiredSpan the current layout span >= 0 * @param x the location r starts at. */ protected void adjustRow(FlowView fv, int rowIndex, int desiredSpan, int x) { @@ -832,8 +832,8 @@ * Implemented to return false, as hit detection is not * performed on the logical view. * - * @param x the X coordinate >= 0 - * @param y the Y coordinate >= 0 + * @param x the X coordinate >= 0 + * @param y the Y coordinate >= 0 * @param alloc the rectangle * @return true if the point is before the specified range */ @@ -846,8 +846,8 @@ * Implemented to return false, as hit detection is not * performed on the logical view. * - * @param x the X coordinate >= 0 - * @param y the Y coordinate >= 0 + * @param x the X coordinate >= 0 + * @param y the Y coordinate >= 0 * @param alloc the rectangle * @return true if the point is after the specified range */ @@ -860,8 +860,8 @@ * Implemented to return null, as hit detection is not * performed on the logical view. * - * @param x the X coordinate >= 0 - * @param y the Y coordinate >= 0 + * @param x the X coordinate >= 0 + * @param y the Y coordinate >= 0 * @param alloc the parent's allocation on entry, which should * be changed to the child's allocation on exit * @return the child view @@ -875,7 +875,7 @@ * Implemented to do nothing, as the logical view doesn't * perform layout on the children. * - * @param index the index of the child, >= 0 && < getViewCount() + * @param index the index of the child, >= 0 && < getViewCount() * @param a the allocation to the interior of the box on entry, * and the allocation of the child view at the index on exit. */ diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/GapContent.java --- a/jdk/src/share/classes/javax/swing/text/GapContent.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/GapContent.java Tue Sep 24 17:04:47 2013 +0400 @@ -107,7 +107,7 @@ /** * Returns the length of the content. * - * @return the length >= 1 + * @return the length >= 1 * @see AbstractDocument.Content#length */ public int length() { @@ -118,7 +118,7 @@ /** * Inserts a string into the content. * - * @param where the starting position >= 0, < length() + * @param where the starting position >= 0, < length() * @param str the non-null string to insert * @return an UndoableEdit object for undoing * @exception BadLocationException if the specified position is invalid @@ -136,8 +136,8 @@ /** * Removes part of the content. * - * @param where the starting position >= 0, where + nitems < length() - * @param nitems the number of characters to remove >= 0 + * @param where the starting position >= 0, where + nitems < length() + * @param nitems the number of characters to remove >= 0 * @return an UndoableEdit object for undoing * @exception BadLocationException if the specified position is invalid * @see AbstractDocument.Content#remove @@ -156,8 +156,8 @@ /** * Retrieves a portion of the content. * - * @param where the starting position >= 0 - * @param len the length to retrieve >= 0 + * @param where the starting position >= 0 + * @param len the length to retrieve >= 0 * @return a string representing the content * @exception BadLocationException if the specified position is invalid * @see AbstractDocument.Content#getString @@ -174,8 +174,8 @@ * span the gap, the actual store is returned to avoid the copy since * it is contiguous. * - * @param where the starting position >= 0, where + len <= length() - * @param len the number of characters to retrieve >= 0 + * @param where the starting position >= 0, where + len <= length() + * @param len the number of characters to retrieve >= 0 * @param chars the Segment object to return the characters in * @exception BadLocationException if the specified position is invalid * @see AbstractDocument.Content#getChars @@ -222,7 +222,7 @@ * Creates a position within the content that will * track change as the content is mutated. * - * @param offset the offset to track >= 0 + * @param offset the offset to track >= 0 * @return the position * @exception BadLocationException if the specified position is invalid */ @@ -705,8 +705,8 @@ * there. The vector with the resulting Positions are returned. * * @param v the Vector to use, with a new one created on null - * @param offset the starting offset >= 0 - * @param length the length >= 0 + * @param offset the starting offset >= 0 + * @param length the length >= 0 * @return the set of instances */ protected Vector getPositionsInRange(Vector v, int offset, int length) { diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/GlyphView.java --- a/jdk/src/share/classes/javax/swing/text/GlyphView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/GlyphView.java Tue Sep 24 17:04:47 2013 +0400 @@ -121,8 +121,8 @@ * the GlyphPainter to determine what characters * it should render glyphs for. * - * @param p0 the starting document offset >= 0 - * @param p1 the ending document offset >= p0 + * @param p0 the starting document offset >= 0 + * @param p1 the ending document offset >= p0 * @return the Segment containing the text */ public Segment getText(int p0, int p1) { @@ -282,9 +282,9 @@ * tab expansion implementation. * * @param x the position the view would be located - * at for the purpose of tab expansion >= 0. + * at for the purpose of tab expansion >= 0. * @param e how to expand the tabs when encountered. - * @return the desired span >= 0 + * @return the desired span >= 0 * @see TabableView#getTabbedSpan */ public float getTabbedSpan(float x, TabExpander e) { @@ -321,9 +321,9 @@ * arrange for its own text buffer to make the * measurements. * - * @param p0 the starting document offset >= 0 - * @param p1 the ending document offset >= p0 - * @return the span >= 0 + * @param p0 the starting document offset >= 0 + * @param p1 the ending document offset >= p0 + * @return the span >= 0 */ public float getPartialSpan(int p0, int p1) { checkPainter(); @@ -572,7 +572,7 @@ * axis. * * @param axis may be either View.X_AXIS or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0. + * @return the span the view would like to be rendered into >= 0. * Typically the view is told to render into the span * that is returned, although there is no guarantee. * The parent may choose to resize or break the view. @@ -639,7 +639,7 @@ * Provides a mapping from the document model coordinate space * to the coordinate space of the view mapped to it. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param a the allocated region to render into * @param b either Position.Bias.Forward * or Position.Bias.Backward @@ -657,14 +657,14 @@ * Provides a mapping from the view coordinate space to the logical * coordinate space of the model. * - * @param x the X coordinate >= 0 - * @param y the Y coordinate >= 0 + * @param x the X coordinate >= 0 + * @param y the Y coordinate >= 0 * @param a the allocated region to render into * @param biasReturn either Position.Bias.Forward * or Position.Bias.Backward is returned as the * zero-th element of this array * @return the location within the model that best represents the - * given point of view >= 0 + * given point of view >= 0 * @see View#viewToModel */ public int viewToModel(float x, float y, Shape a, Position.Bias[] biasReturn) { @@ -702,10 +702,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 pos - * where a potential break is desired >= 0. + * where a potential break is desired >= 0. * @return the weight, which should be a value between * View.ForcedBreakWeight and View.BadBreakWeight. * @see LabelView @@ -736,12 +736,12 @@ * * @param axis may be either View.X_AXIS or View.Y_AXIS * @param p0 the location in the model where the - * fragment should start it's representation >= 0. + * fragment should start it's representation >= 0. * @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, if the view can be broken. If the view * doesn't support breaking behavior, the view itself is @@ -852,10 +852,10 @@ * to return a nested class that shares state in this view * representing only a portion of the view. * - * @param p0 the starting offset >= 0. This should be a value + * @param p0 the starting offset >= 0. This should be a value * greater or equal to the element starting offset and * less than the element ending offset. - * @param p1 the ending offset > p0. This should be a value + * @param p1 the ending offset > p0. This should be a value * less than or equal to the elements end offset and * greater than the elements starting offset. * @return the view fragment, or itself if the view doesn't @@ -880,7 +880,7 @@ * they just might not allow access to some of the locations in the * model. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param a the allocated region to render into * @param direction the direction from the current position that can * be thought of as the arrow keys typically found on a keyboard. @@ -1196,12 +1196,12 @@ * * @param v the view to find the model location to break at. * @param p0 the location in the model where the - * fragment should start it's representation >= 0. + * fragment should start it's representation >= 0. * @param x the graphic location 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 into the view - * where a potential break is desired >= 0. + * where a potential break is desired >= 0. * @return the maximum model location possible for a break. * @see View#breakView */ @@ -1214,8 +1214,8 @@ * the painter doesn't hold any significant state, it can * return itself. The default behavior is to return itself. * @param v the GlyphView to provide a painter for - * @param p0 the starting document offset >= 0 - * @param p1 the ending document offset >= p0 + * @param p0 the starting document offset >= 0 + * @param p1 the ending document offset >= p0 */ public GlyphPainter getPainter(GlyphView v, int p0, int p1) { return this; @@ -1229,7 +1229,7 @@ * model. * * @param v the view to use - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param b either Position.Bias.Forward * or Position.Bias.Backward * @param a the allocated region to render into diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/Highlighter.java --- a/jdk/src/share/classes/javax/swing/text/Highlighter.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/Highlighter.java Tue Sep 24 17:04:47 2013 +0400 @@ -66,8 +66,8 @@ * Adds a highlight to the view. Returns a tag that can be used * to refer to the highlight. * - * @param p0 the beginning of the range >= 0 - * @param p1 the end of the range >= p0 + * @param p0 the beginning of the range >= 0 + * @param p1 the end of the range >= p0 * @param p the painter to use for the actual highlighting * @return an object that refers to the highlight * @exception BadLocationException for an invalid range specification @@ -93,8 +93,8 @@ * with a mouse) by damaging only what changed. * * @param tag which highlight to change - * @param p0 the beginning of the range >= 0 - * @param p1 the end of the range >= p0 + * @param p0 the beginning of the range >= 0 + * @param p1 the end of the range >= p0 * @exception BadLocationException for an invalid range specification */ public void changeHighlight(Object tag, int p0, int p1) throws BadLocationException; @@ -115,8 +115,8 @@ * Renders the highlight. * * @param g the graphics context - * @param p0 the starting offset in the model >= 0 - * @param p1 the ending offset in the model >= p0 + * @param p0 the starting offset in the model >= 0 + * @param p1 the ending offset in the model >= p0 * @param bounds the bounding box for the highlight * @param c the editor */ @@ -129,14 +129,14 @@ /** * Gets the starting model offset for the highlight. * - * @return the starting offset >= 0 + * @return the starting offset >= 0 */ public int getStartOffset(); /** * Gets the ending model offset for the highlight. * - * @return the ending offset >= 0 + * @return the ending offset >= 0 */ public int getEndOffset(); diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/IconView.java --- a/jdk/src/share/classes/javax/swing/text/IconView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/IconView.java Tue Sep 24 17:04:47 2013 +0400 @@ -101,7 +101,7 @@ * along the x axis. * * @param axis may be either View.X_AXIS or View.Y_AXIS - * @return the desired alignment >= 0.0f && <= 1.0f. This should be + * @return the desired alignment >= 0.0f && <= 1.0f. This should be * a value between 0.0 and 1.0 where 0 indicates alignment at the * origin and 1.0 indicates alignment to the full span * away from the origin. An alignment of 0.5 would be the @@ -120,7 +120,7 @@ * Provides a mapping from the document model coordinate space * to the coordinate space of the view mapped to it. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param a the allocated region to render into * @return the bounding box of the given position * @exception BadLocationException if the given position does not @@ -145,11 +145,11 @@ * Provides a mapping from the view coordinate space to the logical * coordinate space of the model. * - * @param x the X coordinate >= 0 - * @param y the Y coordinate >= 0 + * @param x the X coordinate >= 0 + * @param y the Y coordinate >= 0 * @param a the allocated region to render into * @return the location within the model that best represents the - * given point of view >= 0 + * given point of view >= 0 * @see View#viewToModel */ public int viewToModel(float x, float y, Shape a, Position.Bias[] bias) { diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/NavigationFilter.java --- a/jdk/src/share/classes/javax/swing/text/NavigationFilter.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/NavigationFilter.java Tue Sep 24 17:04:47 2013 +0400 @@ -57,7 +57,7 @@ * on the FilterBypass * * @param fb FilterBypass that can be used to mutate caret position - * @param dot the position >= 0 + * @param dot the position >= 0 * @param bias Bias to place the dot at */ public void setDot(FilterBypass fb, int dot, Position.Bias bias) { @@ -72,7 +72,7 @@ * methods on the FilterBypass. * * @param fb FilterBypass that can be used to mutate caret position - * @param dot the position >= 0 + * @param dot the position >= 0 * @param bias Bias for new location */ public void moveDot(FilterBypass fb, int dot, Position.Bias bias) { @@ -131,7 +131,7 @@ /** * Sets the caret location, bypassing the NavigationFilter. * - * @param dot the position >= 0 + * @param dot the position >= 0 * @param bias Bias to place the dot at */ public abstract void setDot(int dot, Position.Bias bias); @@ -139,7 +139,7 @@ /** * Moves the caret location, bypassing the NavigationFilter. * - * @param dot the position >= 0 + * @param dot the position >= 0 * @param bias Bias for new location */ public abstract void moveDot(int dot, Position.Bias bias); diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/ParagraphView.java --- a/jdk/src/share/classes/javax/swing/text/ParagraphView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/ParagraphView.java Tue Sep 24 17:04:47 2013 +0400 @@ -409,8 +409,8 @@ * * @param x the X reference position * @param tabOffset the position within the text stream - * that the tab occurred at >= 0 - * @return the trailing end of the tab expansion >= 0 + * that the tab occurred at >= 0 + * @return the trailing end of the tab expansion >= 0 * @see TabSet * @see TabStop * @see LabelView @@ -489,9 +489,9 @@ * the TabableView interface, * the preferredSpan will be used. * - * @param startOffset the starting document offset >= 0 - * @param endOffset the ending document offset >= startOffset - * @return the size >= 0 + * @param startOffset the starting document offset >= 0 + * @param endOffset the ending document offset >= startOffset + * @return the size >= 0 */ protected float getPartialSize(int startOffset, int endOffset) { float size = 0.0f; @@ -529,7 +529,7 @@ * there are no characters found, -1 will be returned. * * @param string the string of characters - * @param start where to start in the model >= 0 + * @param start where to start in the model >= 0 * @return the document offset, or -1 if no characters found */ protected int findOffsetToCharactersInString(char[] string, @@ -642,7 +642,7 @@ * @param axis may be either View.X_AXIS * or View.Y_AXIS * @param len specifies where a potential break is desired - * along the given axis >= 0 + * along the given axis >= 0 * @param a the current allocation of the view * @return the fragment of the view that represents the * given span, if the view can be broken; if the view @@ -675,7 +675,7 @@ * * @param axis may be either View.X_AXIS * or View.Y_AXIS - * @param len specifies where a potential break is desired >= 0 + * @param len specifies where a potential break is desired >= 0 * @return a value indicating the attractiveness of breaking here; * either GoodBreakWeight or BadBreakWeight * @see View#getBreakWeight @@ -1141,7 +1141,7 @@ * Fetches the child view index representing the given position in * the model. * - * @param pos the position >= 0 + * @param pos the position >= 0 * @return index of the view representing the given position, or * -1 if no view represents that position */ diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/PasswordView.java --- a/jdk/src/share/classes/javax/swing/text/PasswordView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/PasswordView.java Tue Sep 24 17:04:47 2013 +0400 @@ -55,11 +55,11 @@ * using the value returned by getEchoChar(). * * @param g the graphics context - * @param x the starting X coordinate >= 0 - * @param y the starting Y coordinate >= 0 - * @param p0 the starting offset in the model >= 0 - * @param p1 the ending offset in the model >= p0 - * @return the X location of the end of the range >= 0 + * @param x the starting X coordinate >= 0 + * @param y the starting Y coordinate >= 0 + * @param p0 the starting offset in the model >= 0 + * @param p1 the ending offset in the model >= p0 + * @return the X location of the end of the range >= 0 * @exception BadLocationException if p0 or p1 are out of range */ protected int drawUnselectedText(Graphics g, int x, int y, @@ -94,11 +94,11 @@ * display the characters. * * @param g the graphics context - * @param x the starting X coordinate >= 0 - * @param y the starting Y coordinate >= 0 - * @param p0 the starting offset in the model >= 0 - * @param p1 the ending offset in the model >= p0 - * @return the X location of the end of the range >= 0 + * @param x the starting X coordinate >= 0 + * @param y the starting Y coordinate >= 0 + * @param p0 the starting offset in the model >= 0 + * @param p1 the ending offset in the model >= p0 + * @return the X location of the end of the range >= 0 * @exception BadLocationException if p0 or p1 are out of range */ protected int drawSelectedText(Graphics g, int x, @@ -126,10 +126,10 @@ * or unselected text. * * @param g the graphics context - * @param x the starting X coordinate >= 0 - * @param y the starting Y coordinate >= 0 + * @param x the starting X coordinate >= 0 + * @param y the starting Y coordinate >= 0 * @param c the echo character - * @return the updated X position >= 0 + * @return the updated X position >= 0 */ protected int drawEchoCharacter(Graphics g, int x, int y, char c) { ONE[0] = c; @@ -142,7 +142,7 @@ * Provides a mapping from the document model coordinate space * to the coordinate space of the view mapped to it. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param a the allocated region to render into * @return the bounding box of the given position * @exception BadLocationException if the given position does not @@ -172,8 +172,8 @@ * Provides a mapping from the view coordinate space to the logical * coordinate space of the model. * - * @param fx the X coordinate >= 0.0f - * @param fy the Y coordinate >= 0.0f + * @param fx the X coordinate >= 0.0f + * @param fy the Y coordinate >= 0.0f * @param a the allocated region to render into * @return the location within the model that best represents the * given point in the view @@ -210,7 +210,7 @@ * axis. * * @param axis may be either View.X_AXIS or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0. + * @return the span the view would like to be rendered into >= 0. * Typically the view is told to render into the span * that is returned, although there is no guarantee. * The parent may choose to resize or break the view. diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/PlainDocument.java --- a/jdk/src/share/classes/javax/swing/text/PlainDocument.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/PlainDocument.java Tue Sep 24 17:04:47 2013 +0400 @@ -103,7 +103,7 @@ * Concurrency * in Swing for more information. * - * @param offs the starting offset >= 0 + * @param offs the starting offset >= 0 * @param str the string to insert; does nothing with null/empty strings * @param a the attributes for the inserted content * @exception BadLocationException the given insert position is not a valid diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/PlainView.java --- a/jdk/src/share/classes/javax/swing/text/PlainView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/PlainView.java Tue Sep 24 17:04:47 2013 +0400 @@ -66,10 +66,10 @@ * drawSelectedText so that the way selected and * unselected text are rendered can be customized. * - * @param lineIndex the line to draw >= 0 + * @param lineIndex the line to draw >= 0 * @param g the Graphics context - * @param x the starting X position >= 0 - * @param y the starting Y position >= 0 + * @param x the starting X position >= 0 + * @param y the starting Y position >= 0 * @see #drawUnselectedText * @see #drawSelectedText */ @@ -138,11 +138,11 @@ * text. Uses the foreground or disabled color to render the text. * * @param g the graphics context - * @param x the starting X coordinate >= 0 - * @param y the starting Y coordinate >= 0 - * @param p0 the beginning position in the model >= 0 - * @param p1 the ending position in the model >= 0 - * @return the X location of the end of the range >= 0 + * @param x the starting X coordinate >= 0 + * @param y the starting Y coordinate >= 0 + * @param p0 the beginning position in the model >= 0 + * @param p1 the ending position in the model >= 0 + * @return the X location of the end of the range >= 0 * @exception BadLocationException if the range is invalid */ protected int drawUnselectedText(Graphics g, int x, int y, @@ -163,10 +163,10 @@ * the selected background. * * @param g the graphics context - * @param x the starting X coordinate >= 0 - * @param y the starting Y coordinate >= 0 - * @param p0 the beginning position in the model >= 0 - * @param p1 the ending position in the model >= 0 + * @param x the starting X coordinate >= 0 + * @param y the starting Y coordinate >= 0 + * @param p0 the beginning position in the model >= 0 + * @param p1 the ending position in the model >= 0 * @return the location of the end of the range * @exception BadLocationException if the range is invalid */ @@ -218,7 +218,7 @@ * axis. * * @param axis may be either View.X_AXIS or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0. + * @return the span the view would like to be rendered into >= 0. * Typically the view is told to render into the span * that is returned, although there is no guarantee. * The parent may choose to resize or break the view. @@ -332,7 +332,7 @@ * Provides a mapping from the document model coordinate space * to the coordinate space of the view mapped to it. * - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param a the allocated region to render into * @return the bounding box of the given position * @exception BadLocationException if the given position does not @@ -369,11 +369,11 @@ * Provides a mapping from the view coordinate space to the logical * coordinate space of the model. * - * @param fx the X coordinate >= 0 - * @param fy the Y coordinate >= 0 + * @param fx the X coordinate >= 0 + * @param fy the Y coordinate >= 0 * @param a the allocated region to render into * @return the location within the model that best represents the - * given point in the view >= 0 + * given point in the view >= 0 * @see View#viewToModel */ public int viewToModel(float fx, float fy, Shape a, Position.Bias[] bias) { @@ -482,8 +482,8 @@ * layout of the view along the given axis, 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) { super.setSize(width, height); @@ -497,10 +497,10 @@ * This implementation does not support things like centering so it * ignores the tabOffset argument. * - * @param x the current position >= 0 + * @param x the current position >= 0 * @param tabOffset the position within the text stream - * that the tab occurred at >= 0. - * @return the tab stop, measured in points >= 0 + * that the tab occurred at >= 0. + * @return the tab stop, measured in points >= 0 */ public float nextTabStop(float x, int tabOffset) { if (tabSize == 0) { diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/Position.java --- a/jdk/src/share/classes/javax/swing/text/Position.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/Position.java Tue Sep 24 17:04:47 2013 +0400 @@ -51,7 +51,7 @@ /** * Fetches the current offset within the document. * - * @return the offset >= 0 + * @return the offset >= 0 */ public int getOffset(); diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/StringContent.java --- a/jdk/src/share/classes/javax/swing/text/StringContent.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/StringContent.java Tue Sep 24 17:04:47 2013 +0400 @@ -61,7 +61,7 @@ /** * Creates a new StringContent object, with the initial - * size specified. If the length is < 1, a size of 1 is used. + * size specified. If the length is < 1, a size of 1 is used. * * @param initialLength the initial size */ @@ -77,7 +77,7 @@ /** * Returns the length of the content. * - * @return the length >= 1 + * @return the length >= 1 * @see AbstractDocument.Content#length */ public int length() { @@ -87,7 +87,7 @@ /** * Inserts a string into the content. * - * @param where the starting position >= 0 && < length() + * @param where the starting position >= 0 && < length() * @param str the non-null string to insert * @return an UndoableEdit object for undoing * @exception BadLocationException if the specified position is invalid @@ -106,10 +106,10 @@ } /** - * Removes part of the content. where + nitems must be < length(). + * Removes part of the content. where + nitems must be < length(). * - * @param where the starting position >= 0 - * @param nitems the number of characters to remove >= 0 + * @param where the starting position >= 0 + * @param nitems the number of characters to remove >= 0 * @return an UndoableEdit object for undoing * @exception BadLocationException if the specified position is invalid * @see AbstractDocument.Content#remove @@ -129,10 +129,10 @@ } /** - * Retrieves a portion of the content. where + len must be <= length(). + * Retrieves a portion of the content. where + len must be <= length(). * - * @param where the starting position >= 0 - * @param len the length to retrieve >= 0 + * @param where the starting position >= 0 + * @param len the length to retrieve >= 0 * @return a string representing the content; may be empty * @exception BadLocationException if the specified position is invalid * @see AbstractDocument.Content#getString @@ -145,10 +145,10 @@ } /** - * Retrieves a portion of the content. where + len must be <= length() + * Retrieves a portion of the content. where + len must be <= length() * - * @param where the starting position >= 0 - * @param len the number of characters to retrieve >= 0 + * @param where the starting position >= 0 + * @param len the number of characters to retrieve >= 0 * @param chars the Segment object to return the characters in * @exception BadLocationException if the specified position is invalid * @see AbstractDocument.Content#getChars @@ -166,7 +166,7 @@ * Creates a position within the content that will * track change as the content is mutated. * - * @param offset the offset to create a position for >= 0 + * @param offset the offset to create a position for >= 0 * @return the position * @exception BadLocationException if the specified position is invalid */ @@ -266,8 +266,8 @@ * to subclasses. * * @param v the Vector to use, with a new one created on null - * @param offset the starting offset >= 0 - * @param length the length >= 0 + * @param offset the starting offset >= 0 + * @param length the length >= 0 * @return the set of instances */ protected Vector getPositionsInRange(Vector v, int offset, diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/StyleContext.java --- a/jdk/src/share/classes/javax/swing/text/StyleContext.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/StyleContext.java Tue Sep 24 17:04:47 2013 +0400 @@ -241,7 +241,7 @@ * * @param family the font family (such as "Monospaced") * @param style the style of the font (such as Font.PLAIN) - * @param size the point size >= 1 + * @param size the point size >= 1 * @return the new font */ public Font getFont(String family, int style, int size) { @@ -1387,7 +1387,7 @@ /** * Gets the number of attributes that are defined. * - * @return the number of attributes >= 0 + * @return the number of attributes >= 0 * @see AttributeSet#getAttributeCount */ public int getAttributeCount() { diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/StyledDocument.java --- a/jdk/src/share/classes/javax/swing/text/StyledDocument.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/StyledDocument.java Tue Sep 24 17:04:47 2013 +0400 @@ -76,8 +76,8 @@ * giving an Attributes argument that has no attributes defined * and setting replace to true. * - * @param offset the start of the change >= 0 - * @param length the length of the change >= 0 + * @param offset the start of the change >= 0 + * @param length the length of the change >= 0 * @param s the non-null attributes to change to. Any attributes * defined will be applied to the text for the given range. * @param replace indicates whether or not the previous @@ -91,8 +91,8 @@ /** * Sets paragraph attributes. * - * @param offset the start of the change >= 0 - * @param length the length of the change >= 0 + * @param offset the start of the change >= 0 + * @param length the length of the change >= 0 * @param s the non-null attributes to change to. Any attributes * defined will be applied to the text for the given range. * @param replace indicates whether or not the previous @@ -111,7 +111,7 @@ * in turn may resolve through some hierarchy completely * independent of the element hierarchy in the document. * - * @param pos the starting position >= 0 + * @param pos the starting position >= 0 * @param s the style to set */ public void setLogicalStyle(int pos, Style s); @@ -119,7 +119,7 @@ /** * Gets a logical style for a given position in a paragraph. * - * @param p the position >= 0 + * @param p the position >= 0 * @return the style */ public Style getLogicalStyle(int p); @@ -128,7 +128,7 @@ * Gets the element that represents the paragraph that * encloses the given offset within the document. * - * @param pos the offset >= 0 + * @param pos the offset >= 0 * @return the element */ public Element getParagraphElement(int pos); @@ -137,7 +137,7 @@ * Gets the element that represents the character that * is at the given offset within the document. * - * @param pos the offset >= 0 + * @param pos the offset >= 0 * @return the element */ public Element getCharacterElement(int pos); diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/StyledEditorKit.java --- a/jdk/src/share/classes/javax/swing/text/StyledEditorKit.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/StyledEditorKit.java Tue Sep 24 17:04:47 2013 +0400 @@ -689,7 +689,7 @@ * Creates a new AlignmentAction. * * @param nm the action name - * @param a the alignment >= 0 + * @param a the alignment >= 0 */ public AlignmentAction(String nm, int a) { super(nm); diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/TabExpander.java --- a/jdk/src/share/classes/javax/swing/text/TabExpander.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/TabExpander.java Tue Sep 24 17:04:47 2013 +0400 @@ -37,10 +37,10 @@ * Returns the next tab stop position given a reference * position. Values are expressed in points. * - * @param x the position in points >= 0 + * @param x the position in points >= 0 * @param tabOffset the position within the text stream - * that the tab occurred at >= 0. - * @return the next tab stop >= 0 + * that the tab occurred at >= 0. + * @return the next tab stop >= 0 */ float nextTabStop(float x, int tabOffset); diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/TabableView.java --- a/jdk/src/share/classes/javax/swing/text/TabableView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/TabableView.java Tue Sep 24 17:04:47 2013 +0400 @@ -46,9 +46,9 @@ * along the axis of tab expansion. * * @param x the position the view would be located - * at for the purpose of tab expansion >= 0. + * at for the purpose of tab expansion >= 0. * @param e how to expand the tabs when encountered. - * @return the desired span >= 0 + * @return the desired span >= 0 */ float getTabbedSpan(float x, TabExpander e); @@ -62,9 +62,9 @@ * an assumption that the range given does not * contain tabs. * - * @param p0 the starting location in the text document >= 0 - * @param p1 the ending location in the text document >= p0 - * @return the span >= 0 + * @param p0 the starting location in the text document >= 0 + * @param p1 the ending location in the text document >= p0 + * @return the span >= 0 */ float getPartialSpan(int p0, int p1); } diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/TableView.java --- a/jdk/src/share/classes/javax/swing/text/TableView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/TableView.java Tue Sep 24 17:04:47 2013 +0400 @@ -542,7 +542,7 @@ * view the children do not necessarily have a one to one mapping * with the child elements. * - * @param pos the search position >= 0 + * @param pos the search position >= 0 * @param a the allocation to the table on entry, and the * allocation of the view containing the position on exit * @return the view representing the given position, or @@ -755,7 +755,7 @@ * view the children do not necessarily have a one to one mapping * with the child elements. * - * @param pos the search position >= 0 + * @param pos the search position >= 0 * @param a the allocation to the table on entry, and the * allocation of the view containing the position on exit * @return the view representing the given position, or @@ -833,8 +833,8 @@ /** * Sets the grid location. * - * @param row the row >= 0 - * @param col the column >= 0 + * @param row the row >= 0 + * @param col the column >= 0 */ public void setGridLocation(int row, int col) { this.row = row; @@ -871,8 +871,8 @@ /** * Sets the grid location. * - * @param row the row >= 0 - * @param col the column >= 0 + * @param row the row >= 0 + * @param col the column >= 0 */ public void setGridLocation(int row, int col); diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/Utilities.java --- a/jdk/src/share/classes/javax/swing/text/Utilities.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/Utilities.java Tue Sep 24 17:04:47 2013 +0400 @@ -71,12 +71,12 @@ * where ints are used and 72dpi is assumed. * * @param s the source of the text - * @param x the X origin >= 0 - * @param y the Y origin >= 0 + * @param x the X origin >= 0 + * @param y the Y origin >= 0 * @param g the graphics context * @param e how to expand the tabs. If this value is null, * tabs will be expanded as a space character. - * @param startOffset starting offset of the text in the document >= 0 + * @param startOffset starting offset of the text in the document >= 0 * @return the X location at the end of the rendered text */ public static final int drawTabbedText(Segment s, int x, int y, Graphics g, @@ -92,12 +92,12 @@ * * @param view View requesting rendering, may be null. * @param s the source of the text - * @param x the X origin >= 0 - * @param y the Y origin >= 0 + * @param x the X origin >= 0 + * @param y the Y origin >= 0 * @param g the graphics context * @param e how to expand the tabs. If this value is null, * tabs will be expanded as a space character. - * @param startOffset starting offset of the text in the document >= 0 + * @param startOffset starting offset of the text in the document >= 0 * @return the X location at the end of the rendered text */ static final int drawTabbedText(View view, @@ -197,10 +197,10 @@ * * @param s the source of the text * @param metrics the font metrics to use for the calculation - * @param x the X origin >= 0 + * @param x the X origin >= 0 * @param e how to expand the tabs. If this value is null, * tabs will be expanded as a space character. - * @param startOffset starting offset of the text in the document >= 0 + * @param startOffset starting offset of the text in the document >= 0 * @return the width of the text */ public static final int getTabbedTextWidth(Segment s, FontMetrics metrics, int x, @@ -289,13 +289,13 @@ * @param s the source of the text * @param metrics the font metrics to use for the calculation * @param x0 the starting view location representing the start - * of the given text >= 0. + * of the given text >= 0. * @param x the target view location to translate to an - * offset into the text >= 0. + * offset into the text >= 0. * @param e how to expand the tabs. If this value is null, * tabs will be expanded as a space character. - * @param startOffset starting offset of the text in the document >= 0 - * @return the offset into the text >= 0 + * @param startOffset starting offset of the text in the document >= 0 + * @return the offset into the text >= 0 */ public static final int getTabbedTextOffset(Segment s, FontMetrics metrics, int x0, int x, TabExpander e, @@ -488,8 +488,8 @@ * a value of -1 will be returned. * * @param c the editor - * @param offs the offset in the document >= 0 - * @return the position >= 0 if the request can be computed, otherwise + * @param offs the offset in the document >= 0 + * @return the position >= 0 if the request can be computed, otherwise * a value of -1 will be returned. * @exception BadLocationException if the offset is out of range */ @@ -518,8 +518,8 @@ * a value of -1 will be returned. * * @param c the editor - * @param offs the offset in the document >= 0 - * @return the position >= 0 if the request can be computed, otherwise + * @param offs the offset in the document >= 0 + * @return the position >= 0 if the request can be computed, otherwise * a value of -1 will be returned. * @exception BadLocationException if the offset is out of range */ @@ -549,9 +549,9 @@ * a value of -1 will be returned. * * @param c the editor - * @param offs the offset in the document >= 0 - * @param x the X coordinate >= 0 - * @return the position >= 0 if the request can be computed, otherwise + * @param offs the offset in the document >= 0 + * @param x the X coordinate >= 0 + * @return the position >= 0 if the request can be computed, otherwise * a value of -1 will be returned. * @exception BadLocationException if the offset is out of range */ @@ -586,9 +586,9 @@ * a value of -1 will be returned. * * @param c the editor - * @param offs the offset in the document >= 0 - * @param x the X coordinate >= 0 - * @return the position >= 0 if the request can be computed, otherwise + * @param offs the offset in the document >= 0 + * @param x the X coordinate >= 0 + * @return the position >= 0 if the request can be computed, otherwise * a value of -1 will be returned. * @exception BadLocationException if the offset is out of range */ @@ -622,8 +622,8 @@ * Uses BreakIterator.getWordInstance() to actually get the words. * * @param c the editor - * @param offs the offset in the document >= 0 - * @return the location in the model of the word start >= 0 + * @param offs the offset in the document >= 0 + * @return the location in the model of the word start >= 0 * @exception BadLocationException if the offset is out of range */ public static final int getWordStart(JTextComponent c, int offs) throws BadLocationException { @@ -656,8 +656,8 @@ * Uses BreakIterator.getWordInstance() to actually get the words. * * @param c the editor - * @param offs the offset in the document >= 0 - * @return the location in the model of the word end >= 0 + * @param offs the offset in the document >= 0 + * @return the location in the model of the word end >= 0 * @exception BadLocationException if the offset is out of range */ public static final int getWordEnd(JTextComponent c, int offs) throws BadLocationException { @@ -689,8 +689,8 @@ * Uses BreakIterator.getWordInstance() to actually get the words. * * @param c the editor - * @param offs the offset in the document >= 0 - * @return the location in the model of the word start >= 0 + * @param offs the offset in the document >= 0 + * @return the location in the model of the word start >= 0 * @exception BadLocationException if the offset is out of range */ public static final int getNextWord(JTextComponent c, int offs) throws BadLocationException { @@ -767,8 +767,8 @@ * Uses BreakIterator.getWordInstance() to actually get the words. * * @param c the editor - * @param offs the offset in the document >= 0 - * @return the location in the model of the word start >= 0 + * @param offs the offset in the document >= 0 + * @return the location in the model of the word start >= 0 * @exception BadLocationException if the offset is out of range */ public static final int getPreviousWord(JTextComponent c, int offs) throws BadLocationException { @@ -841,7 +841,7 @@ * Determines the element to use for a paragraph/line. * * @param c the editor - * @param offs the starting offset in the document >= 0 + * @param offs the starting offset in the document >= 0 * @return the element */ public static final Element getParagraphElement(JTextComponent c, int offs) { @@ -972,7 +972,7 @@ * must then override the flipEastAndWestAtEnds method. * * @param v View to query - * @param pos the position to convert >= 0 + * @param pos the position to convert >= 0 * @param a the allocated region to render into * @param direction the direction from the current position that can * be thought of as the arrow keys typically found on a keyboard; diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/View.java --- a/jdk/src/share/classes/javax/swing/text/View.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/View.java Tue Sep 24 17:04:47 2013 +0400 @@ -72,12 +72,12 @@ alt="The above text describes this graphic.">

The minimum set of methods for layout are:

The setSize method should be prepared to be called a number of times @@ -142,7 +142,7 @@

The methods for rendering are:

@@ -153,12 +153,12 @@ to perform translation to properly locate spatial representation of the model. The methods for doing this are:

The layout must be valid prior to attempting to make the translation. The translation is not valid, and must not be attempted while changes diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/WrappedPlainView.java --- a/jdk/src/share/classes/javax/swing/text/WrappedPlainView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/WrappedPlainView.java Tue Sep 24 17:04:47 2013 +0400 @@ -93,11 +93,11 @@ * drawSelectedText so that the way selected and * unselected text are rendered can be customized. * - * @param p0 the starting document location to use >= 0 - * @param p1 the ending document location to use >= p1 + * @param p0 the starting document location to use >= 0 + * @param p1 the ending document location to use >= p1 * @param g the graphics context - * @param x the starting X position >= 0 - * @param y the starting Y position >= 0 + * @param x the starting X position >= 0 + * @param y the starting Y position >= 0 * @see #drawUnselectedText * @see #drawSelectedText */ @@ -165,11 +165,11 @@ * text. * * @param g the graphics context - * @param x the starting X coordinate >= 0 - * @param y the starting Y coordinate >= 0 - * @param p0 the beginning position in the model >= 0 - * @param p1 the ending position in the model >= p0 - * @return the X location of the end of the range >= 0 + * @param x the starting X coordinate >= 0 + * @param y the starting Y coordinate >= 0 + * @param p0 the beginning position in the model >= 0 + * @param p1 the ending position in the model >= p0 + * @return the X location of the end of the range >= 0 * @exception BadLocationException if the range is invalid */ protected int drawUnselectedText(Graphics g, int x, int y, @@ -190,10 +190,10 @@ * the selected background. * * @param g the graphics context - * @param x the starting X coordinate >= 0 - * @param y the starting Y coordinate >= 0 - * @param p0 the beginning position in the model >= 0 - * @param p1 the ending position in the model >= p0 + * @param x the starting X coordinate >= 0 + * @param y the starting Y coordinate >= 0 + * @param p0 the beginning position in the model >= 0 + * @param p1 the ending position in the model >= p0 * @return the location of the end of the range. * @exception BadLocationException if the range is invalid */ @@ -326,10 +326,10 @@ * This implementation does not support things like centering so it * ignores the tabOffset argument. * - * @param x the current position >= 0 + * @param x the current position >= 0 * @param tabOffset the position within the text stream - * that the tab occurred at >= 0. - * @return the tab stop, measured in points >= 0 + * that the tab occurred at >= 0. + * @return the tab stop, measured in points >= 0 */ public float nextTabStop(float x, int tabOffset) { if (tabSize == 0) @@ -374,8 +374,8 @@ * layout of the view along the given axis, 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) { updateMetrics(); diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/ZoneView.java --- a/jdk/src/share/classes/javax/swing/text/ZoneView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/ZoneView.java Tue Sep 24 17:04:47 2013 +0400 @@ -130,7 +130,7 @@ * * @param mzl the desired maximum number of zones * to be actively loaded, must be greater than 0 - * @exception IllegalArgumentException if mzl is < 1 + * @exception IllegalArgumentException if mzl is < 1 */ public void setMaxZonesLoaded(int mzl) { if (mzl < 1) { @@ -198,11 +198,11 @@ * implementation for a zone by changing this method. * * @param p0 the start of the desired zone. This should - * be >= getStartOffset() and < getEndOffset(). This - * value should also be < p1. + * be >= getStartOffset() and < getEndOffset(). This + * value should also be < p1. * @param p1 the end of the desired zone. This should - * be > getStartOffset() and <= getEndOffset(). This - * value should also be > p0. + * be > getStartOffset() and <= getEndOffset(). This + * value should also be > p0. */ protected View createZone(int p0, int p1) { Document doc = getDocument(); @@ -242,7 +242,7 @@ * Returns the child view index representing the given position in * the model. * - * @param pos the position >= 0 + * @param pos the position >= 0 * @return index of the view representing the given position, or * -1 if no view represents that position */ diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/html/BlockView.java --- a/jdk/src/share/classes/javax/swing/text/html/BlockView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/html/BlockView.java Tue Sep 24 17:04:47 2013 +0400 @@ -352,7 +352,7 @@ * * @param axis may be either View.X_AXIS * or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0; + * @return the span the view would like to be rendered into >= 0; * typically the view is told to render into the span * that is returned, although there is no guarantee; * the parent may choose to resize or break the view @@ -368,7 +368,7 @@ * * @param axis may be either View.X_AXIS * or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0; + * @return the span the view would like to be rendered into >= 0; * typically the view is told to render into the span * that is returned, although there is no guarantee; * the parent may choose to resize or break the view @@ -384,7 +384,7 @@ * * @param axis may be either View.X_AXIS * or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0; + * @return the span the view would like to be rendered into >= 0; * typically the view is told to render into the span * that is returned, although there is no guarantee; * the parent may choose to resize or break the view diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/html/CSS.java --- a/jdk/src/share/classes/javax/swing/text/html/CSS.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/html/CSS.java Tue Sep 24 17:04:47 2013 +0400 @@ -117,7 +117,7 @@ * *

Note: for the time being we do not fully support relative units, * unless noted, so that - * p { margin-top: 10% } will be treated as if no margin-top was specified. + * p { margin-top: 10% } will be treated as if no margin-top was specified. * * @author Timothy Prinzing * @author Scott Violet diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/html/FormView.java --- a/jdk/src/share/classes/javax/swing/text/html/FormView.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/html/FormView.java Tue Sep 24 17:04:47 2013 +0400 @@ -380,7 +380,7 @@ * axis of interest. * * @param axis may be either View.X_AXIS or View.Y_AXIS - * @return the span the view would like to be rendered into >= 0. + * @return the span the view would like to be rendered into >= 0. * Typically the view is told to render into the span * that is returned, although there is no guarantee. * The parent may choose to resize or break the view. diff -r cafca01a8e28 -r 1c5d22e5b898 jdk/src/share/classes/javax/swing/text/html/HTMLDocument.java --- a/jdk/src/share/classes/javax/swing/text/html/HTMLDocument.java Tue Sep 24 16:36:00 2013 +0400 +++ b/jdk/src/share/classes/javax/swing/text/html/HTMLDocument.java Tue Sep 24 17:04:47 2013 +0400 @@ -107,21 +107,21 @@ *

With the following HTML content:

* *
- * <html>
- *   <head>
- *     <title>An example HTMLDocument</title>
- *     <style type="text/css">
+ * <html>
+ *   <head>
+ *     <title>An example HTMLDocument</title>
+ *     <style type="text/css">
  *       div { background-color: silver; }
  *       ul { color: red; }
- *     </style>
- *   </head>
- *   <body>
- *     <div id="BOX">
- *       <p>Paragraph 1</p>
- *       <p>Paragraph 2</p>
- *     </div>
- *   </body>
- * </html>
+ *     </style>
+ *   </head>
+ *   <body>
+ *     <div id="BOX">
+ *       <p>Paragraph 1</p>
+ *       <p>Paragraph 2</p>
+ *     </div>
+ *   </body>
+ * </html>
  * 
* *

All the methods for modifying an HTML document require an {@link @@ -149,10 +149,10 @@ * of any non-leaf element by using the methods * insertAfterStart and insertBeforeEnd. * For example, if e is the DIV element, - * d.insertAfterStart(e, "<ul><li>List - * Item</li></ul>") inserts the list before the first - * paragraph, and d.insertBeforeEnd(e, "<ul><li>List - * Item</li></ul>") inserts the list after the last + * d.insertAfterStart(e, "<ul><li>List + * Item</li></ul>") inserts the list before the first + * paragraph, and d.insertBeforeEnd(e, "<ul><li>List + * Item</li></ul>") inserts the list after the last * paragraph. The DIV block becomes the parent of the * newly inserted elements.

* @@ -160,9 +160,9 @@ * using the methods insertBeforeStart and * insertAfterEnd. For example, if e is the * DIV element, d.insertBeforeStart(e, - * "<ul><li>List Item</li></ul>") inserts the list + * "<ul><li>List Item</li></ul>") inserts the list * before the DIV element, and d.insertAfterEnd(e, - * "<ul><li>List Item</li></ul>") inserts the list + * "<ul><li>List Item</li></ul>") inserts the list * after the DIV element. The newly inserted elements * become siblings of the DIV element.

* @@ -171,10 +171,10 @@ *

Elements and all their descendants can be replaced by using the * methods setInnerHTML and setOuterHTML. * For example, if e is the DIV element, - * d.setInnerHTML(e, "<ul><li>List - * Item</li></ul>") replaces all children paragraphs with - * the list, and d.setOuterHTML(e, "<ul><li>List - * Item</li></ul>") replaces the DIV element + * d.setInnerHTML(e, "<ul><li>List + * Item</li></ul>") replaces all children paragraphs with + * the list, and d.setOuterHTML(e, "<ul><li>List + * Item</li></ul>") replaces the DIV element * itself. In latter case the parent of the list is the * BODY element. * @@ -184,6 +184,7 @@ * of various methods described above.

* * + * * * * @@ -985,25 +986,25 @@ * parameter is in bold).

* *
-     *     <body>
+     *     <body>
      *       |
-     *     <div>
+     *     <div>
      *      /  \
-     *    <p>   <p>
+     *    <p>   <p>
      * 
* - *

Invoking setInnerHTML(elem, "<ul><li>") + *

Invoking setInnerHTML(elem, "<ul><li>") * results in the following structure (new elements are in red).

* *
-     *     <body>
+     *     <body>
      *       |
-     *     <div>
+     *     <div>
      *         \
-     *         <ul>
+     *         <ul>
      *           \
-     *           <li>
+     *           <li>
      * 
* *

Parameter elem must not be a leaf element, @@ -1066,23 +1067,23 @@ * parameter is in bold).

* *
-     *     <body>
+     *     <body>
      *       |
-     *     <div>
+     *     <div>
      *      /  \
-     *    <p>   <p>
+     *    <p>   <p>
      * 
* - *

Invoking setOuterHTML(elem, "<ul><li>") + *

Invoking setOuterHTML(elem, "<ul><li>") * results in the following structure (new elements are in red).

* *
-     *    <body>
+     *    <body>
      *      |
-     *     <ul>
+     *     <ul>
      *       \
-     *       <li>
+     *       <li>
      * 
* *

If either elem or htmlText @@ -1136,25 +1137,25 @@ * parameter is in bold).

* *
-     *     <body>
+     *     <body>
      *       |
-     *     <div>
+     *     <div>
      *      /  \
-     *    <p>   <p>
+     *    <p>   <p>
      * 
* *

Invoking insertAfterStart(elem, - * "<ul><li>") results in the following structure + * "<ul><li>") results in the following structure * (new elements are in red).

* *
-     *        <body>
+     *        <body>
      *          |
-     *        <div>
+     *        <div>
      *       /  |  \
-     *    <ul> <p> <p>
+     *    <ul> <p> <p>
      *     /
-     *  <li>
+     *  <li>
      * 
* *

Unlike the insertBeforeStart method, new @@ -1206,25 +1207,25 @@ * parameter is in bold).

* *
-     *     <body>
+     *     <body>
      *       |
-     *     <div>
+     *     <div>
      *      /  \
-     *    <p>   <p>
+     *    <p>   <p>
      * 
* - *

Invoking insertBeforeEnd(elem, "<ul><li>") + *

Invoking insertBeforeEnd(elem, "<ul><li>") * results in the following structure (new elements are in red).

* *
-     *        <body>
+     *        <body>
      *          |
-     *        <div>
+     *        <div>
      *       /  |  \
-     *     <p> <p> <ul>
+     *     <p> <p> <ul>
      *               \
-     *               <li>
+     *               <li>
      * 
* *

Unlike the insertAfterEnd method, new elements @@ -1273,23 +1274,23 @@ * parameter is in bold).

* *
-     *     <body>
+     *     <body>
      *       |
-     *     <div>
+     *     <div>
      *      /  \
-     *    <p>   <p>
+     *    <p>   <p>
      * 
* *

Invoking insertBeforeStart(elem, - * "<ul><li>") results in the following structure + * "<ul><li>") results in the following structure * (new elements are in red).

* *
-     *        <body>
+     *        <body>
      *         /  \
-     *      <ul> <div>
+     *      <ul> <div>
      *       /    /  \
-     *     <li> <p>  <p>
+     *     <li> <p>  <p>
      * 
* *

Unlike the insertAfterStart method, new @@ -1331,23 +1332,23 @@ * parameter is in bold).

* *
-     *     <body>
+     *     <body>
      *       |
-     *     <div>
+     *     <div>
      *      /  \
-     *    <p>   <p>
+     *    <p>   <p>
      * 
* - *

Invoking insertAfterEnd(elem, "<ul><li>") + *

Invoking insertAfterEnd(elem, "<ul><li>") * results in the following structure (new elements are in red).

* *
-     *        <body>
+     *        <body>
      *         /  \
-     *      <div> <ul>
+     *      <div> <ul>
      *       / \    \
-     *     <p> <p>  <li>
+     *     <p> <p>  <li>
      * 
* *

Unlike the insertBeforeEnd method, new elements @@ -2166,7 +2167,7 @@ *

ExampleinsertAfterStart
HTML.Tag.VAR CharacterAction *
*

- * Once </html> is encountered, the Actions are no longer notified. + * Once </html> is encountered, the Actions are no longer notified. */ public class HTMLReader extends HTMLEditorKit.ParserCallback {