()
| 148 | } |
| 149 | |
| 150 | private void setText() { |
| 151 | Matcher matcher = Pattern.compile("<.*?>([\\s\\S]*)<.*?>").matcher(getHtml()); |
| 152 | if (matcher.find()) |
| 153 | text = matcher.group(1); |
| 154 | if (text == null) text = ""; |
| 155 | } |
| 156 | |
| 157 | public String getHtml() { |
| 158 | return html; |
no test coverage detected