(String text0)
| 101 | } |
| 102 | |
| 103 | protected void insertText(String text0) { |
| 104 | int insertLength = text0.length(); |
| 105 | if (selStart > 0) { |
| 106 | text0 = text.substring(0, selStart) + text0; |
| 107 | } |
| 108 | int selEnd = selStart + selLength; |
| 109 | if (selEnd < text.length()) { |
| 110 | text0 += text.substring(selEnd); |
| 111 | } |
| 112 | text = text0; |
| 113 | selStart += insertLength; //put cursor after inserted text |
| 114 | selLength = 0; |
| 115 | } |
| 116 | |
| 117 | public String getSelectedText() { |
| 118 | if (selLength > 0) { |