PropertyMgr.setAll (obj) |
function replaces the whole xml encoded HopObject with
a new one passed as argument
|
Sourcecode in PropertyMgr/objectFunctions.js:
1: function setAll(obj) { 2: if (!obj) 3: return false; 4: this._parent[this.getDataField()] = Xml.writeToString(obj); 5: this.cache.content = obj; 6: return true; 7: } |