(StringBuffer sb)
| 247 | }; |
| 248 | |
| 249 | private String parsePlainText(StringBuffer sb) throws XMLException, UnsupportedEncodingException { |
| 250 | return StringUtils.unescapeTags(new String(sb.toString().getBytes("ISO8859-1"), "UTF-8")); |
| 251 | } |
| 252 | |
| 253 | public void pushOutPlainText() throws XMLException, UnsupportedEncodingException { |
| 254 | if (state==PLAIN_TEXT) { |
no test coverage detected