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 classZHtml.AnchorRepresents an anchor node (<a>).classZHtml.CellRepresents a table cell node (<td>).classZHtml.DivRepresents a div element (<div>).classZHtml.DocumentRepresents the root node of an HTML document.classZHtml.HeadingRepresents a heading tag with a given level (<hlevel>).classZHtml.ParagraphRepresents a text paragraph (<p>).classZHtml.RowRepresents a table row node (<tr>).classZHtml.TableRepresents a table node (<table>).classZHtml.TextNodeRepresents 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.RowZHtml.Row. addCell(ZHtml.Node node)Appends a cell node (tdtag) with the given inner node to the row.ZHtml.RowZHtml.Row. addCell(ZHtml.Node node, String style)Appends a cell node (tdtag) with the given inner node and the given initial style to the row.ZHtml.HeadingZHtml.Document. addHeading(ZHtml.Node node, int level)Appends a heading (htag) wrapping the given node and having the given level to the document body.ZHtml.HeadingZHtml.Document. addHeading(ZHtml.Node node, int level, String align)Appends a heading (htag) wrapping the given node, having the given level and aligned to the given direction to the document body.ZHtml.TextNodeZHtml.TextNode. addNode(ZHtml.Node node)Appends an inner node to this node.