1 6 package org.xml.sax.ext; 7 8 import org.xml.sax.SAXException ; 9 10 11 48 public interface DeclHandler 49 { 50 51 67 public abstract void elementDecl (String name, String model) 68 throws SAXException ; 69 70 71 96 public abstract void attributeDecl (String eName, 97 String aName, 98 String type, 99 String mode, 100 String value) 101 throws SAXException ; 102 103 104 118 public abstract void internalEntityDecl (String name, String value) 119 throws SAXException ; 120 121 122 140 public abstract void externalEntityDecl (String name, String publicId, 141 String systemId) 142 throws SAXException ; 143 144 } 145 146 | Popular Tags |