Mercurial > hg > ltpda
view m-toolbox/classes/@data2D/fromDom.m @ 2:18e956c96a1b database-connection-manager
Add LTPDADatabaseConnectionManager implementation. Matlab code
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Sun, 04 Dec 2011 21:23:09 +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