view m-toolbox/classes/@data2D/fromDom.m @ 9:fbbfcd56e449 database-connection-manager

Remove dead code
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 obj = fromDom(obj, node, inhists)
  
  %%%%%%%%%% Call super-class
  
  fromDom@ltpda_data(obj, node, inhists);
  
  %%%%%%%%%% Get properties from the node attributes
  
  %%%%%%%%%% Get properties from the child nodes
  
  % Get xunits
  childNode = utils.xml.getChildByName(node, 'xunits');
  if ~isempty(childNode)
    obj.xunits = unit(childNode, inhists);
  end
  
  % Get x
  childNode = utils.xml.getChildByName(node, 'x');
  if ~isempty(childNode)
    obj.x = utils.xml.getNumber(childNode);
  end
  
  % Get dx
  childNode = utils.xml.getChildByName(node, 'dx');
  if ~isempty(childNode)
    obj.dx = utils.xml.getNumber(childNode);
  end
  
end