Mercurial > hg > ltpda
diff m-toolbox/classes/@ltpda_uo/attachToDom.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/m-toolbox/classes/@ltpda_uo/attachToDom.m Wed Nov 23 19:22:13 2011 +0100 @@ -0,0 +1,31 @@ + +function collectedHist = attachToDom(obj, dom, parent, collectedHist) + + collectedHist = attachToDom@ltpda_obj(obj, dom, parent, collectedHist); + + % Add name + if ~isempty(obj.name) + nameNode = dom.createElement('name'); + utils.xml.attachCharToDom(obj.name, dom, nameNode); + parent.appendChild(nameNode); + end + + % Add description + if ~isempty(obj.description) + descNode = dom.createElement('description'); + utils.xml.attachCharToDom(obj.description, dom, descNode); + parent.appendChild(descNode); + end + + % Add mdlfile + if ~isempty(obj.mdlfile) + % needs string fix as well + mdlfileNode = dom.createElement('mdlfile'); + utils.xml.attachCharToDom(obj.mdlfile, dom, mdlfileNode); + parent.appendChild(mdlfileNode); + end + + % Add UUID + parent.setAttribute('UUID', obj.UUID); + +end