MCPcopy Index your code
hub / github.com/benfry/processing4 / insertText

Method insertText

app/src/processing/app/ui/Editor.java:1375–1382  ·  view source on GitHub ↗
(String what)

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls 5

startCompoundEditMethod · 0.95
getCaretOffsetMethod · 0.95
setSelectionMethod · 0.95
stopCompoundEditMethod · 0.95
setSelectedTextMethod · 0.45

Tested by

no test coverage detected