view m-toolbox/classes/@ltpda_uo/attachToDom.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +0100
parents f0afece42f48
children
line wrap: on
line source


function collectedHist = attachToDom(obj, dom, parent, collectedHist)
  
  collectedHist = attachToDom@ltpda_obj(obj, dom, parent, collectedHist);
  
  % Add name
  if ~isempty(obj.name)
    nameNode = dom.createElement('name');
    utils.xml.attachCharToDom(obj.name, dom, nameNode);
    parent.appendChild(nameNode);
  end
  
  % Add description
  if ~isempty(obj.description)
    descNode = dom.createElement('description');
    utils.xml.attachCharToDom(obj.description, dom, descNode);
    parent.appendChild(descNode);
  end
  
  % Add mdlfile
  if ~isempty(obj.mdlfile)
    % needs string fix as well
    mdlfileNode = dom.createElement('mdlfile');
    utils.xml.attachCharToDom(obj.mdlfile, dom, mdlfileNode);
    parent.appendChild(mdlfileNode);
  end
  
  % Add UUID
  parent.setAttribute('UUID', obj.UUID);
  
end