view m-toolbox/classes/@minfo/attachToDom.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 (2011-12-04) |
parents |
f0afece42f48 |
children |
|
line source
function collectedHist = attachToDom(objs, dom, parent, collectedHist)
if isempty(objs)
% Create empty minfo node with the attribute 'shape'
utils.xml.attachEmptyObjectNode(objs, dom, parent);
else
for oo = 1:numel(objs)
obj = objs(oo);
% Create object node
minfoNode = dom.createElement('minfo');
minfoNode.setAttribute('shape', sprintf('%dx%d', size(objs)));
% Add encoded string
minfoNode.setAttribute('methodInfo', obj.getEncodedString);
% Add children
if isa(obj.children, 'minfo')
% childrenNode = dom.createElement('children');
collectedHist = obj.children.attachToDom(dom, minfoNode, collectedHist);
% aoNode.appendChild(childrenNode);
end
% Add to parent node
parent.appendChild(minfoNode);
end
end
end