view m-toolbox/classes/@ltpda_uoh/attachToDom.m @ 38:3aef676a1b20 database-connection-manager

Keep backtrace on error
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source


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