1 16 17 package org.apache.xerces.xni; 18 19 31 public interface XMLDocumentFragmentHandler { 32 33 37 59 public void startDocumentFragment(XMLLocator locator, 60 NamespaceContext namespaceContext, 61 Augmentations augmentations) 62 throws XNIException; 63 64 82 public void startGeneralEntity(String name, 83 XMLResourceIdentifier identifier, 84 String encoding, 85 Augmentations augmentations) throws XNIException; 86 87 105 public void textDecl(String version, String encoding, 106 Augmentations augmentations) throws XNIException; 107 108 120 public void endGeneralEntity(String name, Augmentations augmentations) 121 throws XNIException; 122 123 132 public void comment(XMLString text, Augmentations augmentations) 133 throws XNIException; 134 135 153 public void processingInstruction(String target, XMLString data, 154 Augmentations augmentations) 155 throws XNIException; 156 157 167 public void startElement(QName element, XMLAttributes attributes, 168 Augmentations augmentations) throws XNIException; 169 170 180 public void emptyElement(QName element, XMLAttributes attributes, 181 Augmentations augmentations) throws XNIException; 182 183 192 public void characters(XMLString text, Augmentations augmentations) 193 throws XNIException; 194 195 209 public void ignorableWhitespace(XMLString text, 210 Augmentations augmentations) 211 throws XNIException; 212 213 222 public void endElement(QName element, Augmentations augmentations) 223 throws XNIException; 224 225 233 public void startCDATA(Augmentations augmentations) throws XNIException; 234 235 243 public void endCDATA(Augmentations augmentations) throws XNIException; 244 245 253 public void endDocumentFragment(Augmentations augmentations) 254 throws XNIException; 255 256 } | Popular Tags |