Package com.ctc.wstx.dtd
Interface DTDEventListener
- All Known Implementing Classes:
WstxSAXParser
public interface DTDEventListener
-
Method Summary
Modifier and TypeMethodDescriptionvoid
void
dtdComment
(char[] data, int offset, int len) void
dtdElementDecl
(String name, String model) void
dtdExternalEntityDecl
(String name, String publicId, String systemId) void
dtdInternalEntityDecl
(String name, String value) void
dtdNotationDecl
(String name, String publicId, String systemId, URL baseURL) void
dtdProcessingInstruction
(String target, String data) boolean
void
dtdSkippedEntity
(String name) void
dtdUnparsedEntityDecl
(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
-