Mercurial > hg > ltpda
comparison m-toolbox/classes/@timespan/attachToDom.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 collectedHist = attachToDom(objs, dom, parent, collectedHist) | |
3 | |
4 if isempty(objs) | |
5 | |
6 % Create empty timespan node with the attribute 'shape' | |
7 utils.xml.attachEmptyObjectNode(objs, dom, parent); | |
8 | |
9 else | |
10 for oo = 1:numel(objs) | |
11 obj = objs(oo); | |
12 | |
13 % Create object node | |
14 tsNode = dom.createElement('timespan'); | |
15 tsNode.setAttribute('shape', sprintf('%dx%d', size(objs))); | |
16 | |
17 % Call superclass | |
18 collectedHist = attachToDom@ltpda_uoh(obj, dom, tsNode, collectedHist); | |
19 | |
20 % Add startT | |
21 startTNode = dom.createElement('startT'); | |
22 collectedHist = obj.startT.attachToDom(dom, startTNode, collectedHist); | |
23 tsNode.appendChild(startTNode); | |
24 | |
25 % Add endT | |
26 endTNode = dom.createElement('endT'); | |
27 collectedHist = obj.endT.attachToDom(dom, endTNode, collectedHist); | |
28 tsNode.appendChild(endTNode); | |
29 | |
30 % Add to parent node | |
31 parent.appendChild(tsNode); | |
32 end | |
33 end | |
34 | |
35 end |