This method is called when the body of a matching XML element is encountered. If the element has no body, this method is not called at all. The default implementation is a NO-OP. @param namespace the namespace URI of the matching element, or an empty string if the parser is not namespace
(String namespace, String name, String text)
| 129 | * @throws Exception if an error occurs while processing the event |
| 130 | */ |
| 131 | public void body(String namespace, String name, String text) throws Exception { |
| 132 | // NO-OP by default. |
| 133 | } |
| 134 | |
| 135 | |
| 136 | /** |