(CharSequence str)
| 36 | } |
| 37 | |
| 38 | public void setClipBoard(CharSequence str) { |
| 39 | clipBoard = (str.length() > 4096) ? str.toString().substring(0, 4095) : str.toString(); |
| 40 | } |
| 41 | |
| 42 | public boolean isEmpty() { |
| 43 | boolean empty = true; |
no test coverage detected