1 57 58 package com.sun.org.apache.xerces.internal.xni; 59 60 72 public interface XMLDocumentFragmentHandler { 73 74 78 100 public void startDocumentFragment(XMLLocator locator, 101 NamespaceContext namespaceContext, 102 Augmentations augmentations) 103 throws XNIException; 104 105 123 public void startGeneralEntity(String name, 124 XMLResourceIdentifier identifier, 125 String encoding, 126 Augmentations augmentations) throws XNIException; 127 128 146 public void textDecl(String version, String encoding, 147 Augmentations augmentations) throws XNIException; 148 149 161 public void endGeneralEntity(String name, Augmentations augmentations) 162 throws XNIException; 163 164 173 public void comment(XMLString text, Augmentations augmentations) 174 throws XNIException; 175 176 194 public void processingInstruction(String target, XMLString data, 195 Augmentations augmentations) 196 throws XNIException; 197 198 208 public void startElement(QName element, XMLAttributes attributes, 209 Augmentations augmentations) throws XNIException; 210 211 221 public void emptyElement(QName element, XMLAttributes attributes, 222 Augmentations augmentations) throws XNIException; 223 224 233 public void characters(XMLString text, Augmentations augmentations) 234 throws XNIException; 235 236 250 public void ignorableWhitespace(XMLString text, 251 Augmentations augmentations) 252 throws XNIException; 253 254 263 public void endElement(QName element, Augmentations augmentations) 264 throws XNIException; 265 266 274 public void startCDATA(Augmentations augmentations) throws XNIException; 275 276 284 public void endCDATA(Augmentations augmentations) throws XNIException; 285 286 294 public void endDocumentFragment(Augmentations augmentations) 295 throws XNIException; 296 297 } | Popular Tags |