XMLBuilder |
XMLBuilder.a(java.lang.String name,
java.lang.String value) |
|
XMLBuilder |
XMLBuilder.attr(java.lang.String name,
java.lang.String value) |
|
XMLBuilder |
XMLBuilder.attribute(java.lang.String name,
java.lang.String value) |
Add a named attribute value to the element represented by this builder
node, and return the node representing the element to which the
attribute was added (not the new attribute node).
|
XMLBuilder |
XMLBuilder.c(java.lang.String comment) |
|
XMLBuilder |
XMLBuilder.cdata(byte[] data) |
Add a CDATA value to the element represented by this builder node, and
return the node representing the element to which the data
was added (not the new CDATA node).
|
XMLBuilder |
XMLBuilder.cmnt(java.lang.String comment) |
|
XMLBuilder |
XMLBuilder.comment(java.lang.String comment) |
Add a comment to the element represented by this builder node, and
return the node representing the element to which the comment
was added (not the new comment node).
|
static XMLBuilder |
XMLBuilder.create(java.lang.String name) |
Construct a builder for new XML document.
|
XMLBuilder |
XMLBuilder.d(byte[] data) |
Synonym for #cdata(String) .
|
XMLBuilder |
XMLBuilder.data(byte[] data) |
Synonym for #cdata(String) .
|
XMLBuilder |
XMLBuilder.e(java.lang.String name) |
|
XMLBuilder |
XMLBuilder.elem(java.lang.String name) |
|
XMLBuilder |
XMLBuilder.element(java.lang.String name) |
Add a named XML element to the document as a child of this builder node,
and return the builder node representing the new child.
|
XMLBuilder |
XMLBuilder.i(java.lang.String target,
java.lang.String data) |
|
XMLBuilder |
XMLBuilder.importXMLBuilder(XMLBuilder builder) |
Imports another XMLBuilder document into this document at the
current position.
|
XMLBuilder |
XMLBuilder.inst(java.lang.String target,
java.lang.String data) |
|
XMLBuilder |
XMLBuilder.instruction(java.lang.String target,
java.lang.String data) |
Add an instruction to the element represented by this builder node, and
return the node representing the element to which the instruction
was added (not the new instruction node).
|
static XMLBuilder |
XMLBuilder.parse(org.xml.sax.InputSource inputSource) |
Construct a builder from an existing XML document.
|
XMLBuilder |
XMLBuilder.r(java.lang.String name) |
|
XMLBuilder |
XMLBuilder.ref(java.lang.String name) |
|
XMLBuilder |
XMLBuilder.reference(java.lang.String name) |
Add a reference to the element represented by this builder node, and
return the node representing the element to which the reference
was added (not the new reference node).
|
XMLBuilder |
XMLBuilder.root() |
|
XMLBuilder |
XMLBuilder.t(java.lang.String value) |
|
XMLBuilder |
XMLBuilder.text(java.lang.String value) |
Add a text value to the element represented by this builder node, and
return the node representing the element to which the text
was added (not the new text node).
|
XMLBuilder |
XMLBuilder.up() |
Return the builder node representing the parent of the current node.
|
XMLBuilder |
XMLBuilder.up(int steps) |
Return the builder node representing the nth ancestor element
of this node, or the root node if n exceeds the document's depth.
|
XMLBuilder |
XMLBuilder.xpathFind(java.lang.String xpath) |
Find the first element in the builder's DOM matching the given
XPath expression.
|