|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XMLBuilder | |
---|---|
com.jamesmurty.utils |
Uses of XMLBuilder in com.jamesmurty.utils |
---|
Methods in com.jamesmurty.utils that return XMLBuilder | |
---|---|
XMLBuilder |
XMLBuilder.a(java.lang.String name,
java.lang.String value)
Synonym for attribute(String, String) . |
XMLBuilder |
XMLBuilder.attr(java.lang.String name,
java.lang.String value)
Synonym for attribute(String, String) . |
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)
Synonym for comment(String) . |
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)
Synonym for comment(String) . |
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)
Synonym for element(String) . |
XMLBuilder |
XMLBuilder.elem(java.lang.String name)
Synonym for element(String) . |
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)
Synonym for instruction(String, String) . |
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)
Synonym for instruction(String, String) . |
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)
Synonym for reference(String) . |
XMLBuilder |
XMLBuilder.ref(java.lang.String name)
Synonym for reference(String) . |
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)
Synonmy for text(String) . |
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. |
Methods in com.jamesmurty.utils with parameters of type XMLBuilder | |
---|---|
XMLBuilder |
XMLBuilder.importXMLBuilder(XMLBuilder builder)
Imports another XMLBuilder document into this document at the current position. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |