public Xpp3Dom getConfiguration() {
return configuration;
}
public void startNode(String name) {
Xpp3Dom configuration = new Xpp3Dom(escapeXmlName(name));
if (this.configuration == null) {
this.configuration = configuration;
} else {
top().addChild(configuration);