comparison m-toolbox/classes/+utils/@xml/attachCharToDom.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1
2 function attachCharToDom(str, dom, parent)
3
4 % Store the original shape of the string
5 parent.setAttribute('shape', sprintf('%dx%d', size(str)));
6
7 % Replace new line characters and cvs tags with wildcards and reshape the
8 % string to one line
9 str = utils.xml.prepareString(str);
10
11 % Attach the string as a content to the parent node
12 content = dom.createTextNode(str);
13 parent.appendChild(content);
14
15 end