view m-toolbox/classes/@ltpda_uo/fromDom.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 fromDom(obj, node, inhists)
  
  %%%%%%%%%% Call super-class
  
  fromDom@ltpda_obj(obj, node, inhists);
  
  %%%%%%%%%% Get properties from the node attributes
  
  % Get UUID
  obj.UUID = utils.xml.mchar(node.getAttribute('UUID'));
  
  %%%%%%%%%% Get properties from the child nodes
  
  % Get name
  childNode = utils.xml.getChildByName(node, 'name');
  if ~isempty(childNode)
    obj.name = utils.xml.getString(childNode);
  end
  
  % Get description
  childNode = utils.xml.getChildByName(node, 'description');
  if ~isempty(childNode)
    obj.description = utils.xml.getString(childNode);
  end
  
  % Get mdlfile
  childNode = utils.xml.getChildByName(node, 'mdlfile');
  if ~isempty(childNode)
    obj.mdlfile = utils.xml.getString(childNode);
  end
  
end