first commit

This commit is contained in:
2025-07-28 13:56:49 +05:30
commit e9eb805edb
3438 changed files with 520990 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
package org.apache.xerces.xni;
import org.apache.xerces.xni.parser.XMLDocumentSource;
public interface XMLDocumentHandler {
void endCDATA(Augmentations paramAugmentations) throws XNIException;
void endDocument(Augmentations paramAugmentations) throws XNIException;
void startCDATA(Augmentations paramAugmentations) throws XNIException;
XMLDocumentSource getDocumentSource();
void setDocumentSource(XMLDocumentSource paramXMLDocumentSource);
void endGeneralEntity(String paramString, Augmentations paramAugmentations) throws XNIException;
void endElement(QName paramQName, Augmentations paramAugmentations) throws XNIException;
void characters(XMLString paramXMLString, Augmentations paramAugmentations) throws XNIException;
void comment(XMLString paramXMLString, Augmentations paramAugmentations) throws XNIException;
void ignorableWhitespace(XMLString paramXMLString, Augmentations paramAugmentations) throws XNIException;
void textDecl(String paramString1, String paramString2, Augmentations paramAugmentations) throws XNIException;
void emptyElement(QName paramQName, XMLAttributes paramXMLAttributes, Augmentations paramAugmentations) throws XNIException;
void startElement(QName paramQName, XMLAttributes paramXMLAttributes, Augmentations paramAugmentations) throws XNIException;
void processingInstruction(String paramString, XMLString paramXMLString, Augmentations paramAugmentations) throws XNIException;
void doctypeDecl(String paramString1, String paramString2, String paramString3, Augmentations paramAugmentations) throws XNIException;
void xmlDecl(String paramString1, String paramString2, String paramString3, Augmentations paramAugmentations) throws XNIException;
void startGeneralEntity(String paramString1, XMLResourceIdentifier paramXMLResourceIdentifier, String paramString2, Augmentations paramAugmentations) throws XNIException;
void startDocument(XMLLocator paramXMLLocator, String paramString, NamespaceContext paramNamespaceContext, Augmentations paramAugmentations) throws XNIException;
}