Mercurial > hg > ltpda
annotate 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 |
rev | line source |
---|---|
0 | 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 |