Package | Description |
---|---|
net.sf.practicalxml.builder |
XmlBuilder is a tool for declarative construction of XML. |
Modifier and Type | Method and Description |
---|---|
ElementNode |
ElementNode.addChild(Node child)
Adds a child node -- of any type -- to this element.
|
static ElementNode |
XmlBuilder.element(String name,
Node... children)
Creates an element that does not have a namespace.
|
static ElementNode |
XmlBuilder.element(String nsUri,
String qname,
Node... children)
Creates an element, with optional namespace.
|