| Home >> All >> gnu >> xml >> dom >> [ html2 Javadoc ] |
gnu.xml.dom.html2: Javadoc index of package gnu.xml.dom.html2.
Package Samples:
gnu.xml.dom.html2: This is a Free Software DOM Level 3 implementation, supporting these features: "XML" "Events" "MutationEvents" "HTMLEvents" (won't generate them though) "UIEvents" (also won't generate them) "USER-Events" (a conformant extension) "Traversal" (optional) "XPath" "LS" and "LS-Async" It is intended to be a reasonable base both for experimentation and supporting additional DOM modules as clean layers.
Classes:
DomHTMLParser: This parser reads HTML from the given stream and stores into org.w3c.dom.html2.HTMLDocument . The HTML tag becomes the org.w3c.dom.Node . The tag attributes become the node attributes. The text inside HTML tag is inserted as one or several text nodes. The nested HTML tags are inserted as child nodes. If the strict tree structure, closing the tag means closing all nested tags. To work around this, this parser closes the nested tags and immediately reopens them after the closed tag. In this way, <b><i>c</b>d is parsed as <b><i>c</i></b><i>d .
DomHTMLDocument: An HTML document. This is the factory object used to create HTML elements.
DomHTMLHeadingElement: An HTML 'H1', 'H2', 'H3', 'H4', 'H5', or 'H6' element node.
DomHTMLImpl: Specialised DOMImplementation for creating HTML documents.
DomHTMLTableSectionElement: An HTML 'THEAD', 'TFOOT', or 'TBODY' element node.
DomHTMLElement: Abstract implementation of an HTML element node.
DomHTMLQuoteElement: An HTML 'Q' or 'BLOCKQUOTE' element node.
DomHTMLTableColElement: An HTML 'COL' or 'COLGROUP' element node.
DomHTMLHtmlElement: An HTML 'HTML' top-level element node.
DomHTMLModElement: An HTML 'INS' or 'DEL' element node.
DomHTMLTableCellElement: An HTML 'TH' or 'TD' element node.
DomHTMLBaseFontElement: An HTML 'BASEFONT' element node.
DomHTMLFieldSetElement: An HTML 'FIELDSET' element node.
DomHTMLFrameSetElement: An HTML 'FRAMESET' element node.
DomHTMLOptGroupElement: An HTML 'OPTGROUP' element node.
DomHTMLTextAreaElement: An HTML 'TEXTAREA' element node.
DomHTMLIsIndexElement: An HTML 'ISINDEX' element node.
DomHTMLTableCaptionElement: An HTML 'CAPTION' element node.
DomHTMLAppletElement: An HTML 'APPLET' element node.
DomHTMLButtonElement: An HTML 'BUTTON' element node.
DomHTMLIFrameElement: An HTML 'IFRAME' element node.
DomHTMLLegendElement: An HTML 'LEGEND' element node.
DomHTMLObjectElement: An HTML 'OBJECT' element node.
DomHTMLOptionElement: An HTML 'OPTION' element node.
DomHTMLScriptElement: An HTML 'SCRIPT' element node.
| Home | Contact Us | Privacy Policy | Terms of Service |