- c(String) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
- c(String) - Method in class com.jamesmurty.utils.XMLBuilder
-
- c(String) - Method in class com.jamesmurty.utils.XMLBuilder2
-
- cdata(String) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
Add a CDATA node with String content 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).
- cdata(byte[]) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
Add a CDATA node with Base64-encoded byte data content 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).
- cdata(String) - Method in class com.jamesmurty.utils.XMLBuilder
-
- cdata(byte[]) - Method in class com.jamesmurty.utils.XMLBuilder
-
- cdata(String) - Method in class com.jamesmurty.utils.XMLBuilder2
-
- cdata(byte[]) - Method in class com.jamesmurty.utils.XMLBuilder2
-
- cdataImpl(String) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
Add a CDATA node with String content to the element for this builder node.
- cdataImpl(byte[]) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
Add a CDATA node with Base64-encoded byte data content to the element
for this builder node.
- cmnt(String) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
- cmnt(String) - Method in class com.jamesmurty.utils.XMLBuilder
-
- cmnt(String) - Method in class com.jamesmurty.utils.XMLBuilder2
-
- com.jamesmurty.utils - package com.jamesmurty.utils
-
- comment(String) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
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).
- comment(String) - Method in class com.jamesmurty.utils.XMLBuilder
-
- comment(String) - Method in class com.jamesmurty.utils.XMLBuilder2
-
- commentImpl(String) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
Add a comment to the element represented by this builder node.
- create(String, String) - Static method in class com.jamesmurty.utils.XMLBuilder
-
Construct a builder for new XML document with a default namespace.
- create(String) - Static method in class com.jamesmurty.utils.XMLBuilder
-
Construct a builder for new XML document.
- create(String, String) - Static method in class com.jamesmurty.utils.XMLBuilder2
-
Construct a builder for new XML document with a default namespace.
- create(String) - Static method in class com.jamesmurty.utils.XMLBuilder2
-
Construct a builder for new XML document.
- createDocumentImpl(String, String) - Static method in class com.jamesmurty.utils.BaseXMLBuilder
-
Construct an XML Document with a default namespace with the given
root element.
- XMLBuilder - Class in com.jamesmurty.utils
-
XML Builder is a utility that creates simple XML documents using relatively
sparse Java code.
- XMLBuilder(Document) - Constructor for class com.jamesmurty.utils.XMLBuilder
-
Construct a new builder object that wraps the given XML document.
- XMLBuilder(Node, Node) - Constructor for class com.jamesmurty.utils.XMLBuilder
-
Construct a new builder object that wraps the given XML document and node.
- XMLBuilder2 - Class in com.jamesmurty.utils
-
XML Builder is a utility that creates simple XML documents using relatively
sparse Java code.
- XMLBuilder2(Document) - Constructor for class com.jamesmurty.utils.XMLBuilder2
-
Construct a new builder object that wraps the given XML document.
- XMLBuilder2(Node, Node) - Constructor for class com.jamesmurty.utils.XMLBuilder2
-
Construct a new builder object that wraps the given XML document and node.
- XMLBuilderRuntimeException - Exception in com.jamesmurty.utils
-
A runtime exception class used in
XMLBuilder2 to wrap any exceptions
that would otherwise lead to checked exceptions in the interface.
- XMLBuilderRuntimeException(Exception) - Constructor for exception com.jamesmurty.utils.XMLBuilderRuntimeException
-
- xmlDocument - Variable in class com.jamesmurty.utils.BaseXMLBuilder
-
A DOM Document that stores the underlying XML document operated on by
BaseXMLBuilder instances.
- xmlNode - Variable in class com.jamesmurty.utils.BaseXMLBuilder
-
The underlying node represented by this builder node.
- xpathFind(String, NamespaceContext) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
Find the first element in the builder's DOM matching the given
XPath expression, where the expression may include namespaces if
a NamespaceContext is provided.
- xpathFind(String) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
Find the first element in the builder's DOM matching the given
XPath expression.
- xpathFind(String, NamespaceContext) - Method in class com.jamesmurty.utils.XMLBuilder
-
- xpathFind(String) - Method in class com.jamesmurty.utils.XMLBuilder
-
- xpathFind(String, NamespaceContext) - Method in class com.jamesmurty.utils.XMLBuilder2
-
- xpathFind(String) - Method in class com.jamesmurty.utils.XMLBuilder2
-
- xpathFindImpl(String, NamespaceContext) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
Find the first element in the builder's DOM matching the given
XPath expression, where the expression may include namespaces if
a NamespaceContext is provided.
- xpathQuery(String, QName, NamespaceContext) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
Return the result of evaluating an XPath query on the builder's DOM
using the given namespace.
- xpathQuery(String, QName) - Method in class com.jamesmurty.utils.BaseXMLBuilder
-
Return the result of evaluating an XPath query on the builder's DOM.
- xpathQuery(String, QName, NamespaceContext) - Method in class com.jamesmurty.utils.XMLBuilder2
-
- xpathQuery(String, QName) - Method in class com.jamesmurty.utils.XMLBuilder2
-