1 6 package org.xml.sax; 7 8 50 public interface DTDHandler { 51 52 53 80 public abstract void notationDecl (String name, 81 String publicId, 82 String systemId) 83 throws SAXException ; 84 85 86 109 public abstract void unparsedEntityDecl (String name, 110 String publicId, 111 String systemId, 112 String notationName) 113 throws SAXException ; 114 115 } 116 117 | Popular Tags |