Пример #1
0
 /**
  * SAX DTDHandler API.
  *
  * <p>Captured here only to detect the end of the prolog so that we can ignore subsequent
  * oasis-xml-catalog PIs. Otherwise the events are just passed through.
  */
 public void notationDecl(String name, String publicId, String systemId) throws SAXException {
   allowXMLCatalogPI = false;
   super.notationDecl(name, publicId, systemId);
 }
Пример #2
0
 // DTDHandler interface
 // -------------------------------------------------------------------------
 public void notationDecl(String name, String publicID, String systemID) throws SAXException {
   super.notationDecl(name, publicID, systemID);
 }