mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8179364: update "<a name=" in java.base module to use id attribute
Reviewed-by: darcy
This commit is contained in:
parent
f0d6ffcccc
commit
1838d55322
58 changed files with 182 additions and 182 deletions
|
@ -95,7 +95,7 @@ import java.util.stream.StreamSupport;
|
|||
* s.close();
|
||||
* }</pre></blockquote>
|
||||
*
|
||||
* <p>The <a name="default-delimiter">default whitespace delimiter</a> used
|
||||
* <p>The <a id="default-delimiter">default whitespace delimiter</a> used
|
||||
* by a scanner is as recognized by {@link Character#isWhitespace(char)
|
||||
* Character.isWhitespace()}. The {@link #reset reset()}
|
||||
* method will reset the value of the scanner's delimiter to the default
|
||||
|
@ -152,11 +152,11 @@ import java.util.stream.StreamSupport;
|
|||
* {@link #reset} method will reset the value of the scanner's radix to
|
||||
* {@code 10} regardless of whether it was previously changed.
|
||||
*
|
||||
* <h3> <a name="localized-numbers">Localized numbers</a> </h3>
|
||||
* <h3> <a id="localized-numbers">Localized numbers</a> </h3>
|
||||
*
|
||||
* <p> An instance of this class is capable of scanning numbers in the standard
|
||||
* formats as well as in the formats of the scanner's locale. A scanner's
|
||||
* <a name="initial-locale">initial locale </a>is the value returned by the {@link
|
||||
* <a id="initial-locale">initial locale </a>is the value returned by the {@link
|
||||
* java.util.Locale#getDefault(Locale.Category)
|
||||
* Locale.getDefault(Locale.Category.FORMAT)} method; it may be changed via the {@link
|
||||
* #useLocale useLocale()} method. The {@link #reset} method will reset the value of the
|
||||
|
@ -213,7 +213,7 @@ import java.util.stream.StreamSupport;
|
|||
* getInfinity()}
|
||||
* </dl></blockquote>
|
||||
*
|
||||
* <h4> <a name="number-syntax">Number syntax</a> </h4>
|
||||
* <h4> <a id="number-syntax">Number syntax</a> </h4>
|
||||
*
|
||||
* <p> The strings that can be parsed as numbers by an instance of this class
|
||||
* are specified in terms of the following regular-expression grammar, where
|
||||
|
@ -244,7 +244,7 @@ import java.util.stream.StreamSupport;
|
|||
* <dd>{@code ( ( }<i>Digit</i>{@code + )
|
||||
* | }<i>GroupedNumeral</i>{@code )}
|
||||
*
|
||||
* <dt><a name="Integer-regex"><i>Integer</i>:</a>
|
||||
* <dt><a id="Integer-regex"><i>Integer</i>:</a>
|
||||
* <dd>{@code ( [-+]? ( }<i>Numeral</i>{@code
|
||||
* ) )}
|
||||
* <dd>{@code | }<i>LocalPositivePrefix</i> <i>Numeral</i>
|
||||
|
@ -263,7 +263,7 @@ import java.util.stream.StreamSupport;
|
|||
* <dt><i>Exponent</i>:
|
||||
* <dd>{@code ( [eE] [+-]? }<i>Digit</i>{@code + )}
|
||||
*
|
||||
* <dt><a name="Decimal-regex"><i>Decimal</i>:</a>
|
||||
* <dt><a id="Decimal-regex"><i>Decimal</i>:</a>
|
||||
* <dd>{@code ( [-+]? }<i>DecimalNumeral</i>
|
||||
* <i>Exponent</i>{@code ? )}
|
||||
* <dd>{@code | }<i>LocalPositivePrefix</i>
|
||||
|
@ -294,7 +294,7 @@ import java.util.stream.StreamSupport;
|
|||
* <i>NonNumber</i>
|
||||
* <i>LocalNegativeSuffix</i>
|
||||
*
|
||||
* <dt><a name="Float-regex"><i>Float</i></a>:
|
||||
* <dt><a id="Float-regex"><i>Float</i></a>:
|
||||
* <dd><i>Decimal</i>
|
||||
* {@code | }<i>HexFloat</i>
|
||||
* {@code | }<i>SignedNonNumber</i>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue