This method is called when the end of a matching XML element is encountered. 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 aware or the element has no namespace @param name
(String namespace, String name)
| 144 | * @throws Exception if an error occurs while processing the event |
| 145 | */ |
| 146 | public void end(String namespace, String name) throws Exception { |
| 147 | // NO-OP by default. |
| 148 | } |
| 149 | |
| 150 | |
| 151 | /** |