Uses of Class
org.spiderwiz.zutils.ZHtml.Node
Package | Description |
---|---|
org.spiderwiz.zutils |
Various utility classes used by the Spiderwiz framework.
|
-
Uses of ZHtml.Node in org.spiderwiz.zutils
Subclasses of ZHtml.Node in org.spiderwiz.zutils Modifier and Type Class Description class
ZHtml.Anchor
Represents an anchor node (<a>
).class
ZHtml.Cell
Represents a table cell node (<td>
).class
ZHtml.Div
Represents a div element (<div>
).class
ZHtml.Document
Represents the root node of an HTML document.class
ZHtml.Heading
Represents a heading tag with a given level (<h
level>
).class
ZHtml.Paragraph
Represents a text paragraph (<p>
).class
ZHtml.Row
Represents a table row node (<tr>
).class
ZHtml.Table
Represents a table node (<table>
).class
ZHtml.TextNode
Represents a generic node that can be incrementally loaded with anything from plain text to nodes of other types.Methods in org.spiderwiz.zutils with parameters of type ZHtml.Node Modifier and Type Method Description ZHtml.Row
ZHtml.Row. addCell(ZHtml.Node node)
Appends a cell node (td
tag) with the given inner node to the row.ZHtml.Row
ZHtml.Row. addCell(ZHtml.Node node, String style)
Appends a cell node (td
tag) with the given inner node and the given initial style to the row.ZHtml.Heading
ZHtml.Document. addHeading(ZHtml.Node node, int level)
Appends a heading (h
tag) wrapping the given node and having the given level to the document body.ZHtml.Heading
ZHtml.Document. addHeading(ZHtml.Node node, int level, String align)
Appends a heading (h
tag) wrapping the given node, having the given level and aligned to the given direction to the document body.ZHtml.TextNode
ZHtml.TextNode. addNode(ZHtml.Node node)
Appends an inner node to this node.