MCPcopy Create free account
hub / github.com/BombusMod/BombusMod / append

Method append

src/main/java/org/bombusmod/util/ClipBoardIO.java:29–36  ·  view source on GitHub ↗
(String str)

Source from the content-addressed store, hash-verified

27 }
28
29 public void append(String str) {
30 try {
31 StringBuffer clipstr = new StringBuffer(getClipBoard())
32 .append("\n\n")
33 .append(str);
34 setClipBoard(clipstr.toString());
35 } catch (Exception e) {/*no messages*/}
36 }
37
38 public void append(Msg msg) {
39 append(msg.quoteString(true));

Callers 15

mainMethod · 0.80
mouseMovedMethod · 0.80
mouseDraggedMethod · 0.80
mouseMovedMethod · 0.80
getTreadStackTraceMethod · 0.80
writeMethod · 0.80
beginPaintMethod · 0.80
getTipStringMethod · 0.80
toStringMethod · 0.80
SearchResultMethod · 0.80

Calls 4

getClipBoardMethod · 0.95
setClipBoardMethod · 0.95
quoteStringMethod · 0.80
toStringMethod · 0.45

Tested by

no test coverage detected