/** The SAX2 <code>endElement</code> method. Does nothing. */
 public void endElement(String namespaceURI, String localName, String qName) throws SAXException {
   if (saxParser != null) {
     saxParser.endElement(namespaceURI, localName, qName);
   }
 }
 /** The SAX <code>endElement</code> method. Does nothing. */
 public void endElement(String name) throws SAXException {
   if (saxParser != null) {
     saxParser.endElement(name);
   }
 }