return obj;
}
public void marshal(RegistryObject object,Element parent)
{
Property property = (Property)object;
String generic = getGeneric(null);
String namespace = getUDDINamespace(generic);
Element element = parent.getOwnerDocument().createElementNS(namespace,TAG_NAME);
String name = property.getName();
if ((name != null) && (name.trim().length() > 0))
element.setAttribute("name",name);
String value = property.getValue();
if ((value != null) && (value.trim().length() > 0))
element.setAttribute("value",value);
parent.appendChild(element);
}