()
| 251 | } |
| 252 | |
| 253 | public void pushOutPlainText() throws XMLException, UnsupportedEncodingException { |
| 254 | if (state==PLAIN_TEXT) { |
| 255 | if (sbuf.length()>0) |
| 256 | eventListener.plainTextEncountered( parsePlainText(sbuf) ); |
| 257 | |
| 258 | sbuf=new StringBuffer(); |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | public static String extractAttribute(String attributeName, Vector attributes) { |
| 263 | if (attributes==null) return null; |
nothing calls this directly
no test coverage detected