view m-toolbox/classes/@cdata/fromDom.m @ 50:7d2e2e065cf1
database-connection-manager
Update unit tests
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Wed, 07 Dec 2011 17:24:37 +0100 (2011-12-07)
parents
f0afece42f48
children
line source
+ −
+ − function obj = fromDom(obj, node, inhists)
+ −
+ − % Get shape
+ − objShape = utils.xml.getShape(node);
+ −
+ − if any(objShape==0)
+ −
+ − obj = cdata.initObjectWithSize(objShape(1), objShape(2));
+ −
+ − else
+ −
+ − %%%%%%%%%% Call super-class
+ −
+ − fromDom@ltpda_data(obj, node, inhists);
+ −
+ − %%%%%%%%%% Get properties from the node attributes
+ −
+ − %%%%%%%%%% Get properties from the child nodes
+ −
+ − end
+ −
+ − end
+ −