view m-toolbox/classes/+utils/@xml/attachSymToDom.m @ 0:f0afece42f48
Import.
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Wed, 23 Nov 2011 19:22:13 +0100 (2011-11-23)
parents
children
line source
+ −
+ − function attachSymToDom(obj, dom, parent)
+ −
+ − % Attach the string as a content to the parent node
+ − content = dom.createTextNode(char(obj));
+ − parent.appendChild(content);
+ −
+ − end