| AbstractTag |
A basic model class for representing HTML document trees.
|
| Attribute |
An attribute can appear on any tag.
|
| Content |
Content is a marker interface for all model classes that get build while
parsing a HTML document.
|
| ContentContainer |
|
| DefaultHandler |
The default handler is an empty no-op HTML parsing callback handler.
|
| Entity |
All HTML entities &name; will be parsed as instances of this
class.
|
| Handler |
Similar to SAX parsing handlers this handler will be used as a callback
interface, when parsing a HTML document with the HTML parser.
|
| HTML |
|
| HTML5EntityMap |
|
| HTMLParsingException |
A special exception to allow specific catch statements when using the HTML
parser.
|
| HTMLWriter |
A HTMLWriter is a convenience utility to render HTML/XML Trees while allowing
a partial flush of already defined elements and attributes.
|
| Parser |
The parser is used to read HTML input and notify a handler about found HTML
content.
|
| ParserConfig |
A parser config is used by Parser while parsing a HTML document.
|
| PrettyPrintHandler |
The pretty print handler is a simple HTML parsing handler that pretty prints
the HTML to a string buffer.
|
| SelfClosingTag |
A self closing tag is <br> or <hr/>.
|
| Tag |
A HTML tag may contain further content.
|
| Text |
Text is a model class for text content in a HTML document.
|