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

Method append

vm/JavaAPI/src/java/lang/StringBuffer.java:66–69  ·  view source on GitHub ↗

Appends the string representation of the boolean argument to the string buffer. The argument is converted to a string as if by the method String.valueOf, and the characters of that string are then appended to this string buffer.

(boolean b)

Source from the content-addressed store, hash-verified

64 * The argument is converted to a string as if by the method String.valueOf, and the characters of that string are then appended to this string buffer.
65 */
66 public java.lang.StringBuffer append(boolean b){
67 internal.append(b);
68 return this;
69 }
70
71 /**
72 * Appends the string representation of the char argument to this string buffer.

Callers 15

parseNameMethod · 0.95
readResponseMethod · 0.95
toStringMethod · 0.95
nextMethod · 0.95
stripQuotesMethod · 0.95
printMethod · 0.95
quoteMethod · 0.95
toStringMethod · 0.95
substMethod · 0.95
bracketMethod · 0.95
getValueMethod · 0.95

Calls 1

appendMethod · 0.65

Tested by 1

runTestMethod · 0.76