Skip to content

Commit 37093a4

Browse files
committed
Addressed review comments.
1 parent 2b32b86 commit 37093a4

File tree

6 files changed

+24
-20
lines changed

6 files changed

+24
-20
lines changed

src/java.base/share/classes/java/text/Collator.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ public abstract class Collator
189189
* <p>
190190
* CANONICAL_DECOMPOSITION corresponds to Normalization Form D as
191191
* described in
192-
* <a href="http://www.unicode.org/reports/tr15/tr15-23.html">Unicode
193-
* Technical Report #15</a>.
192+
* <a href="http://www.unicode.org/reports/tr15/">Unicode
193+
* Standard Annex #15: Unicode Normalization Forms</a>.
194194
* @see java.text.Collator#getDecomposition
195195
* @see java.text.Collator#setDecomposition
196196
*/
@@ -208,8 +208,8 @@ public abstract class Collator
208208
* <p>
209209
* FULL_DECOMPOSITION corresponds to Normalization Form KD as
210210
* described in
211-
* <a href="http://www.unicode.org/reports/tr15/tr15-23.html">Unicode
212-
* Technical Report #15</a>.
211+
* <a href="http://www.unicode.org/reports/tr15/">Unicode
212+
* Standard Annex #15: Unicode Normalization Forms</a>.
213213
* @see java.text.Collator#getDecomposition
214214
* @see java.text.Collator#setDecomposition
215215
*/

src/java.base/share/classes/java/util/regex/Pattern.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@
539539
*
540540
* <p> This class is in conformance with Level 1 of <a
541541
* href="http://www.unicode.org/reports/tr18/"><i>Unicode Technical
542-
* Standard #18: Unicode Regular Expression</i></a>, plus RL2.1
542+
* Standard #18: Unicode Regular Expressions</i></a>, plus RL2.1
543543
* Canonical Equivalents and RL2.2 Extended Grapheme Clusters.
544544
* <p>
545545
* <b>Unicode escape sequences</b> such as <code>&#92;u2014</code> in Java source code
@@ -630,8 +630,8 @@
630630
* <p>
631631
* The following <b>Predefined Character classes</b> and <b>POSIX character classes</b>
632632
* are in conformance with the recommendation of <i>Annex C: Compatibility Properties</i>
633-
* of <a href="http://www.unicode.org/reports/tr18/"><i>Unicode Regular Expression
634-
* </i></a>, when {@link #UNICODE_CHARACTER_CLASS} flag is specified.
633+
* of <a href="http://www.unicode.org/reports/tr18/"><i>Unicode Technical Standard #18:
634+
* Unicode Regular Expressions</i></a>, when {@link #UNICODE_CHARACTER_CLASS} flag is specified.
635635
*
636636
* <table class="striped">
637637
* <caption style="display:none">predefined and posix character classes in Unicode mode</caption>

src/java.base/share/classes/jdk/internal/icu/text/BidiBase.java

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,9 @@
6262
* <h2>Bidi algorithm for ICU</h2>
6363
*
6464
* This is an implementation of the Unicode Bidirectional Algorithm. The
65-
* algorithm is defined in the <a
66-
* href="http://www.unicode.org/reports/tr9/">Unicode Standard Annex #9</a>.
65+
* algorithm is defined in the
66+
* <a href="http://www.unicode.org/reports/tr9/">Unicode Standard Annex #9:
67+
* Unicode Bidirectional Algorithm</a>.
6768
* <p>
6869
*
6970
* Note: Libraries that perform a bidirectional algorithm and reorder strings
@@ -983,8 +984,9 @@ static class Isolate {
983984

984985
/**
985986
* Enumerated property Bidi_Paired_Bracket_Type (new in Unicode 6.3).
986-
* Used in UAX #9: Unicode Bidirectional Algorithm
987-
* (http://www.unicode.org/reports/tr9/)
987+
* Used in
988+
* <a href="http://www.unicode.org/reports/tr9/">Unicode Standard Annex #9:
989+
* Unicode Bidirectional Algorithm</a>.
988990
* Returns UCharacter.BidiPairedBracketType values.
989991
* @stable ICU 52
990992
*/
@@ -3363,8 +3365,8 @@ void setParaRunsOnly(char[] parmText, byte parmParaLevel) {
33633365

33643366
/**
33653367
* Perform the Unicode Bidi algorithm. It is defined in the
3366-
* <a href="http://www.unicode.org/reports/tr9/">Unicode Standard Annex #9</a>,
3367-
* version 13,
3368+
* <a href="http://www.unicode.org/reports/tr9/">Unicode Standard Annex #9:
3369+
* Unicode Bidirectional Algorithm</a>, version 13,
33683370
* also described in The Unicode Standard, Version 4.0 .<p>
33693371
*
33703372
* This method takes a piece of plain text containing one or more paragraphs,
@@ -3448,8 +3450,8 @@ void setPara(String text, byte paraLevel, byte[] embeddingLevels)
34483450

34493451
/**
34503452
* Perform the Unicode Bidi algorithm. It is defined in the
3451-
* <a href="http://www.unicode.org/reports/tr9/">Unicode Standard Annex #9</a>,
3452-
* version 13,
3453+
* <a href="http://www.unicode.org/reports/tr9/">Unicode Standard Annex #9:
3454+
* Unicode Bidirectional Algorithm</a>, version 13,
34533455
* also described in The Unicode Standard, Version 4.0 .<p>
34543456
*
34553457
* This method takes a piece of plain text containing one or more paragraphs,
@@ -3784,8 +3786,8 @@ void setPara(char[] chars, byte paraLevel, byte[] embeddingLevels)
37843786

37853787
/**
37863788
* Perform the Unicode Bidi algorithm on a given paragraph, as defined in the
3787-
* <a href="http://www.unicode.org/reports/tr9/">Unicode Standard Annex #9</a>,
3788-
* version 13,
3789+
* <a href="http://www.unicode.org/reports/tr9/">Unicode Standard Annex #9:
3790+
* Unicode Bidirectional Algorithm</a>, version 13,
37893791
* also described in The Unicode Standard, Version 4.0 .<p>
37903792
*
37913793
* This method takes a paragraph of text and computes the

src/java.base/share/classes/jdk/internal/icu/text/BidiLine.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ final class BidiLine {
4747
* text in a single paragraph or in a line of a single paragraph
4848
* which has already been processed according to
4949
* the Unicode 3.0 Bidi algorithm as defined in
50-
* http://www.unicode.org/reports/tr9/ , version 13,
50+
* <a href="http://www.unicode.org/reports/tr9/">Unicode Standard Annex #9:
51+
* Unicode Bidirectional Algorithm</a>, version 13,
5152
* also described in The Unicode Standard, Version 4.0.1 .
5253
*
5354
* This means that there is a Bidi object with a levels

src/java.base/share/classes/jdk/internal/icu/text/Normalizer2.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
* The primary functions are to produce a normalized string and to detect whether
4444
* a string is already normalized.
4545
* The most commonly used normalization forms are those defined in
46-
* http://www.unicode.org/reports/tr15/
46+
* <a href="http://www.unicode.org/reports/tr15/">Unicode Standard Annex #15:
47+
* Unicode Normalization Forms</a>.
4748
* However, this API supports additional normalization forms for specialized purposes.
4849
* For example, NFKC_Casefold is provided via getInstance("nfkc_cf", COMPOSE)
4950
* and can be used in implementations of UTS #46.

src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xpath/regex/RegularExpression.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@
473473
* <hr width="50%">
474474
* <h3>TODO</h3>
475475
* <ul>
476-
* <li><a href="http://www.unicode.org/reports/tr18/">Unicode Regular Expression Guidelines</a>
476+
* <li><a href="http://www.unicode.org/reports/tr18/">Unicode Technical Standard #18: Unicode Regular Expressions</a>
477477
* <ul>
478478
* <li>2.4 Canonical Equivalents
479479
* <li>Level 3

0 commit comments

Comments
 (0)