(String what)
| 1373 | |
| 1374 | |
| 1375 | @SuppressWarnings("unused") |
| 1376 | public void insertText(String what) { |
| 1377 | startCompoundEdit(); |
| 1378 | int caret = getCaretOffset(); |
| 1379 | setSelection(caret, caret); |
| 1380 | textarea.setSelectedText(what); |
| 1381 | stopCompoundEdit(); |
| 1382 | } |
| 1383 | |
| 1384 | |
| 1385 | public String getSelectedText() { |
nothing calls this directly
no test coverage detected