Iterator componentNodeListIterator = componentNodeList.iterator();
while(componentNodeListIterator.hasNext())
{
XmlElement child = (XmlElement)componentNodeListIterator.next();
String componentString = builder.serializeToString(child).trim();
sb.append(componentString);
//System.out.println("componentString:" + componentString);
}
//System.out.println("propertyXML HASH:" + sb.toString().hashCode());