(String str)
| 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)); |
no test coverage detected