return;
for (Element childXml : XMLUtils.getChildElements(parentXml)) {
String childName = childXml.getAttribute("name");
PropertyKey childNode = new PropertyKey(parentNode, childName);
parentProp.addChild(childNode, -1);
hier.put(childNode, new Prop());
augmentHierarchy(hier, childNode, childXml);
}
}