42 lines
2.1 KiB
Java
42 lines
2.1 KiB
Java
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;
|
|
}
|