package com.c2kernel.lifecycle.instance.predefined.entitycreation; import org.w3c.dom.Element; import org.w3c.dom.NodeList; import org.w3c.dom.Text; import com.c2kernel.utils.CastorHashMap; import com.c2kernel.utils.KeyValuePair; public class DependencyMember implements java.io.Serializable { public String itemPath; public CastorHashMap props = new CastorHashMap(); public DependencyMember() { super(); } public DependencyMember(String itemPath) { this.itemPath = itemPath; } public DependencyMember(Element elem) { itemPath = elem.getAttribute("itemPath"); NodeList cmpnl = elem.getElementsByTagName("MemberProperty"); for (int l=0; l