diff m-toolbox/classes/@ltpda_uoh/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_uoh/attachToDom.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,33 @@
+
+function collectedHist = attachToDom(obj, dom, parent, collectedHist)
+  
+  collectedHist = attachToDom@ltpda_uo(obj, dom, parent, collectedHist);
+  
+  % Add hist
+  % Adding the history is a special case because here we store only the
+  % UUID of the history object. The history object will be stored in a
+  % special history-graph.
+  if isa(obj.hist, 'history')
+    histNode = dom.createElement('hist');
+    histNode.setAttribute('hist_UUID', obj.hist.UUID);
+    parent.appendChild(histNode);
+    
+    % Add history nodes
+    collectedHist = obj.hist.attachToDom(dom, parent, collectedHist);
+  end
+  
+  % Add procinfo
+  if isa(obj.procinfo, 'plist')
+    procinfoNode = dom.createElement('procinfo');
+    collectedHist = obj.procinfo.attachToDom(dom, procinfoNode, collectedHist);
+    parent.appendChild(procinfoNode);
+  end
+  
+  % Add plotinfo
+  if isa(obj.plotinfo, 'plist')
+    plotinfoNode = dom.createElement('plotinfo');
+    collectedHist = obj.plotinfo.attachToDom(dom, plotinfoNode, collectedHist);
+    parent.appendChild(plotinfoNode);
+  end
+  
+end