Exemplo n.º 1
0
 /** 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);
   }
 }
Exemplo n.º 2
0
 /** The SAX <code>endElement</code> method. Does nothing. */
 public void endElement(String name) throws SAXException {
   if (saxParser != null) {
     saxParser.endElement(name);
   }
 }