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 TypeMethodDescriptionvoidcharacters(char[] data) Receive notification of character data inside a tag.voidcomment(char[] data) Receive notification of comment data.voidReceive notification of end document.voidReceive notification of the end of a tag.voidstartTag(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
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
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.
-