Interface DTDEventListener

All Known Implementing Classes:
WstxSAXParser

public interface DTDEventListener
  • 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

      void dtdProcessingInstruction(String target, String data)
    • 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)
    • dtdElementDecl

      void dtdElementDecl(String name, String model)
    • dtdExternalEntityDecl

      void dtdExternalEntityDecl(String name, String publicId, String systemId)
    • dtdInternalEntityDecl

      void dtdInternalEntityDecl(String name, String value)