Skip to content

Commit 51a7ff6

Browse files
author
Justin Lu
committedOct 21, 2024
8335271: Specify the MessageFormat ArgumentIndex Implementation Limit
Reviewed-by: darcy, iris, naoto, rriggs
1 parent 52d752c commit 51a7ff6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
 

‎src/java.base/share/classes/java/text/MessageFormat.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -110,17 +110,21 @@
110110
* </pre></blockquote>
111111
*
112112
* <p>
113-
* The <i>ArgumentIndex</i> value is a non-negative integer written
113+
* The {@code ArgumentIndex} value is a non-negative integer written
114114
* using the digits {@code '0'} through {@code '9'}, and represents an index into the
115115
* {@code arguments} array passed to the {@code format} methods
116116
* or the result array returned by the {@code parse} methods.
117117
* <p>
118-
* The <i>FormatType</i> and <i>FormatStyle</i> values are used to create
118+
* Any constructor or method that takes a String pattern parameter will throw an {@code IllegalArgumentException} if the
119+
* pattern contains an {@code ArgumentIndex} value that is equal to or exceeds an implementation limit.
120+
* <p>
121+
* The {@code FormatType} and {@code FormatStyle} values are used to create
119122
* a {@code Format} instance for the format element. The following
120123
* table shows how the values map to {@code Format} instances. These values
121124
* are case-insensitive when passed to {@link #applyPattern(String)}. Combinations
122125
* not shown in the table are illegal. A <i>SubformatPattern</i> must
123126
* be a valid pattern string for the {@code Format} subclass used.
127+
* @implNote In the reference implementation, the limit of {@code ArgumentIndex} is 10,000.
124128
*
125129
* <table class="plain">
126130
* <caption style="display:none">Shows how FormatType and FormatStyle values map to Format instances</caption>

0 commit comments

Comments
 (0)
Please sign in to comment.