PropertyMgr.setAll (obj)
function replaces the whole xml encoded HopObject with a new one passed as argument

  • Parameter Obj:
    HopObject to store xml encoded
  • Parameter Boolean:
    true in case of no error, false otherwise
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:   }