8199420: Update javadoc tags in java.lang.System and related

Reviewed-by: lancea, bpb
This commit is contained in:
Roger Riggs 2018-03-12 10:04:12 -04:00
parent 54b1510aa7
commit f0cd136c74
7 changed files with 368 additions and 383 deletions

View file

@ -325,7 +325,7 @@ abstract class AbstractStringBuilder implements Appendable, CharSequence {
* @param index the index to the {@code char} values
* @return the code point value of the character at the
* {@code index}
* @exception IndexOutOfBoundsException if the {@code index}
* @throws IndexOutOfBoundsException if the {@code index}
* argument is negative or not less than the length of this
* sequence.
*/
@ -356,7 +356,7 @@ abstract class AbstractStringBuilder implements Appendable, CharSequence {
*
* @param index the index following the code point that should be returned
* @return the Unicode code point value before the given index.
* @exception IndexOutOfBoundsException if the {@code index}
* @throws IndexOutOfBoundsException if the {@code index}
* argument is less than 1 or greater than the length
* of this sequence.
*/
@ -386,7 +386,7 @@ abstract class AbstractStringBuilder implements Appendable, CharSequence {
* the text range.
* @return the number of Unicode code points in the specified text
* range
* @exception IndexOutOfBoundsException if the
* @throws IndexOutOfBoundsException if the
* {@code beginIndex} is negative, or {@code endIndex}
* is larger than the length of this sequence, or
* {@code beginIndex} is larger than {@code endIndex}.
@ -411,7 +411,7 @@ abstract class AbstractStringBuilder implements Appendable, CharSequence {
* @param index the index to be offset
* @param codePointOffset the offset in code points
* @return the index within this sequence
* @exception IndexOutOfBoundsException if {@code index}
* @throws IndexOutOfBoundsException if {@code index}
* is negative or larger then the length of this sequence,
* or if {@code codePointOffset} is positive and the subsequence
* starting with {@code index} has fewer than
@ -882,7 +882,7 @@ abstract class AbstractStringBuilder implements Appendable, CharSequence {
*
* @param codePoint a Unicode code point
* @return a reference to this object.
* @exception IllegalArgumentException if the specified
* @throws IllegalArgumentException if the specified
* {@code codePoint} isn't a valid Unicode code point
*/
public AbstractStringBuilder appendCodePoint(int codePoint) {