Characters are copied from this string builder into the destination character array dst. The first character to be copied is at index srcBegin; the last character to be copied is at index srcEnd-1. The total number of characters to be copied is srcEnd-srcBegin. The characters are copied into the sub
(int start, int end, char[] dst, int dstStart)
| 313 | * dstbegin + (srcEnd-srcBegin) - 1 |
| 314 | */ |
| 315 | public native void getChars(int start, int end, char[] dst, int dstStart);/* { |
| 316 | System.arraycopy(value, start, dst, dstStart, end - start); |
| 317 | }*/ |
| 318 |
no outgoing calls
no test coverage detected