org.apache.tools.ant.util

Class XMLFragment.Child

Enclosing Class:
XMLFragment
Implemented Interfaces:
DynamicAttributeNS, DynamicConfiguratorNS, DynamicElementNS

public class XMLFragment.Child
extends java.lang.Object
implements DynamicConfiguratorNS

An object to handle (recursively) nested elements.

Method Summary

void
addText(String s)
Add nested text.
Object
createDynamicElement(String uri, String name, String qName)
Creates a nested element.
void
setDynamicAttribute(String uri, String name, String qName, String value)
Sets the attribute

Method Details

addText

public void addText(String s)
Add nested text.
Parameters:
s - the text to add

createDynamicElement

public Object createDynamicElement(String uri,
                                   String name,
                                   String qName)
Creates a nested element.
Specified by:
createDynamicElement in interface DynamicElementNS
Parameters:
uri - the uri of the nested element
name - the localname of the nested element
qName - the qualified name of the nested element
Returns:
an object that the element is applied to

setDynamicAttribute

public void setDynamicAttribute(String uri,
                                String name,
                                String qName,
                                String value)
Sets the attribute
Specified by:
setDynamicAttribute in interface DynamicAttributeNS
Parameters:
uri - the uri of the attribute
name - the localname of the attribute
qName - the qualified name of the attribute
value - the value of the attribute