(String text0)
| 92 | return text; |
| 93 | } |
| 94 | public void setText(String text0) { |
| 95 | if (text0 == null) { |
| 96 | text0 = ""; //don't allow setting null |
| 97 | } |
| 98 | text = text0; |
| 99 | selStart = 0; |
| 100 | selLength = 0; |
| 101 | } |
| 102 | |
| 103 | protected void insertText(String text0) { |
| 104 | int insertLength = text0.length(); |
no outgoing calls
no test coverage detected