Interface IHTMLHandler

All Known Implementing Classes:
DocBookCreator, DOCXCreator, ODFCreator, PPTXCreator, RTFCreator, XLSXCreator

@OpenApiAll public interface IHTMLHandler
Receive notification of the logical content of a HTML document.
Since:
May 21, 2009
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    characters(char[] data)
    Receive notification of character data inside a tag.
    void
    comment(char[] data)
    Receive notification of comment data.
    void
    Receive notification of end document.
    void
    Receive notification of the end of a tag.
    void
    startTag(HTML.Tag tag, AttributeSet attributes)
    Receive notification of the start of a tag.
  • Method Details

    • comment

      void comment(char[] data)
      Receive notification of comment data.
      Parameters:
      data - An array holding the characters in the document.
    • startTag

      void startTag(HTML.Tag tag, AttributeSet attributes)
      Receive notification of the start of a tag.
      Parameters:
      tag - HTML Tag.
      attributes - The attributes attached to the tag. If there are no attributes, it shall be an empty Attributes object.
    • endTag

      void endTag(HTML.Tag tag)
      Receive notification of the end of a tag.
      Parameters:
      tag - HTML Tag.
    • characters

      void characters(char[] data)
      Receive notification of character data inside a tag.
      Parameters:
      data - The characters.
    • endDocument

      void endDocument()
      Receive notification of end document.