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

Method append

vm/JavaAPI/src/java/io/Writer.java:106–109  ·  view source on GitHub ↗
(CharSequence csq)

Source from the content-addressed store, hash-verified

104 }
105
106 public Writer append(CharSequence csq) throws IOException {
107 write(csq.toString());
108 return this;
109 }
110
111 public Writer append(char c) throws IOException {
112 write(c);

Callers

nothing calls this directly

Calls 3

writeMethod · 0.95
toStringMethod · 0.65
subSequenceMethod · 0.65

Tested by

no test coverage detected