Package com.ctc.wstx.dtd
Interface DTDEventListener
-
- All Known Implementing Classes:
WstxSAXParser
public interface DTDEventListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidattributeDecl(String eName, String aName, String type, String mode, String value)voiddtdComment(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)booleandtdReportComments()voiddtdSkippedEntity(String name)voiddtdUnparsedEntityDecl(String name, String publicId, String systemId, String notationName, URL baseURL)
-
-
-
Method Detail
-
dtdReportComments
boolean dtdReportComments()
- Returns:
- True, if there is a listener interested in getting comment events within DTD subset (since that's optional)
-
dtdComment
void dtdComment(char[] data, int offset, int len)
-
dtdSkippedEntity
void dtdSkippedEntity(String name)
-
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
void attributeDecl(String eName, String aName, String type, String mode, String value)
-
-