Interface DTDEventListener
- All Known Implementing Classes:
WstxSAXParser
public interface DTDEventListener
-
Method Summary
Modifier and TypeMethodDescriptionvoidvoiddtdComment(char[] data, int offset, int len) voiddtdElementDecl(String name, String model) voiddtdExternalEntityDecl(String name, String publicId, String systemId) voiddtdInternalEntityDecl(String name, String value) voiddtdNotationDecl(String name, String publicId, String systemId, URL baseURL) voiddtdProcessingInstruction(String target, String data) booleanvoiddtdSkippedEntity(String name) voiddtdUnparsedEntityDecl(String name, String publicId, String systemId, String notationName, URL baseURL)
-
Method Details
-
dtdReportComments
boolean dtdReportComments()- Returns:
- True, if there is a listener interested in getting comment events within DTD subset (since that's optional)
-
dtdProcessingInstruction
-
dtdComment
void dtdComment(char[] data, int offset, int len) -
dtdSkippedEntity
-
dtdNotationDecl
void dtdNotationDecl(String name, String publicId, String systemId, URL baseURL) throws XMLStreamException - Throws:
XMLStreamException
-
dtdUnparsedEntityDecl
void dtdUnparsedEntityDecl(String name, String publicId, String systemId, String notationName, URL baseURL) throws XMLStreamException - Throws:
XMLStreamException
-
attributeDecl
-
dtdElementDecl
-
dtdExternalEntityDecl
-
dtdInternalEntityDecl
-