Uses of Class
org.spiderwiz.zutils.ZHtml.TextNode
Package | Description |
---|---|
org.spiderwiz.zutils |
Various utility classes used by the Spiderwiz framework.
|
-
Uses of ZHtml.TextNode in org.spiderwiz.zutils
Subclasses of ZHtml.TextNode in org.spiderwiz.zutils Modifier and Type Class Description class
ZHtml.Anchor
Represents an anchor node (<a>
).class
ZHtml.Div
Represents a div element (<div>
).class
ZHtml.Paragraph
Represents a text paragraph (<p>
).Methods in org.spiderwiz.zutils that return ZHtml.TextNode Modifier and Type Method Description ZHtml.TextNode
ZHtml.TextNode. addBoldText(String text)
Appends inner bold text (b
tag) to the node.ZHtml.TextNode
ZHtml.TextNode. addLineBreak()
Appends an inner line break (<br/>
) to the node.ZHtml.TextNode
ZHtml.TextNode. addNode(ZHtml.Node node)
Appends an inner node to this node.ZHtml.TextNode
ZHtml.TextNode. addText(String text)
Appends inner text to the node.ZHtml.TextNode
ZHtml.Node. createTextNode(String text)
Instantiates a node with the given text.