Replace the entire contents of the front-most tab. Note that this does a compound edit, so internal callers may want to use textarea.setText() if this is part of a larger compound edit.
(String what)
| 1366 | * if this is part of a larger compound edit. |
| 1367 | */ |
| 1368 | public void setText(String what) { |
| 1369 | startCompoundEdit(); |
| 1370 | textarea.setText(what); |
| 1371 | stopCompoundEdit(); |
| 1372 | } |
| 1373 | |
| 1374 | |
| 1375 | @SuppressWarnings("unused") |
no test coverage detected