MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / getChars

Method getChars

vm/JavaAPI/src/java/lang/StringBuilder.java:315–315  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 3

StringBuilderMethod · 0.45
insertMethod · 0.45
appendMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected