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 void
attributeDecl(String eName, String aName, String type, String mode, String value)
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
dtdReportComments()
void
dtdSkippedEntity(String name)
void
dtdUnparsedEntityDecl(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)
-
-