< prev index next >

src/java.base/share/classes/sun/text/normalizer/ReplaceableString.java

Print this page

        

*** 107,120 **** * characters to be copied is <code>srcLimit-srcStart</code>). The * characters are copied into the subarray of <code>dst</code> * starting at index <code>dstStart</code> and ending at index * <code>dstStart + (srcLimit-srcStart) - 1</code>. * ! * @param srcStart the beginning index to copy, inclusive; <code>0 ! * <= start <= limit</code>. * @param srcLimit the ending index to copy, exclusive; ! * <code>start <= limit <= length()</code>. * @param dst the destination array. * @param dstStart the start offset in the destination array. * @stable ICU 2.0 */ public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { --- 107,120 ---- * characters to be copied is <code>srcLimit-srcStart</code>). The * characters are copied into the subarray of <code>dst</code> * starting at index <code>dstStart</code> and ending at index * <code>dstStart + (srcLimit-srcStart) - 1</code>. * ! * @param srcStart the beginning index to copy, inclusive; ! * {@code 0 <= start <= limit}. * @param srcLimit the ending index to copy, exclusive; ! * {@code start <= limit <= length()}. * @param dst the destination array. * @param dstStart the start offset in the destination array. * @stable ICU 2.0 */ public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) {
< prev index next >