diff m-toolbox/classes/+utils/@xml/getStruct.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/m-toolbox/classes/+utils/@xml/getStruct.m	Wed Nov 23 19:22:13 2011 +0100
@@ -0,0 +1,46 @@
+
+function objs = getStruct(node, inhists)
+  
+  % Get shape
+  objShape = sscanf(utils.xml.mchar(node.getAttribute('structShape')), '%dx%d')';
+  
+  if any(objShape==0)
+    
+    objs = struct([]);
+    objs = reshape(objs, objShape);
+    
+  else
+    
+    objs = [];
+    % Loop over all structure nodes
+    for jj = 1:node.getLength()
+      
+      structNode = node.item(jj-1);
+      if structNode.getNodeType == structNode.ELEMENT_NODE
+        
+        obj = struct();
+        
+        % Loop over all fieldnames
+        for ff = 1:structNode.getLength()
+        
+          fieldnameNode = structNode.item(ff-1);
+          if fieldnameNode.getNodeType == fieldnameNode.ELEMENT_NODE
+            
+            fname = utils.xml.mchar(fieldnameNode.getNodeName());
+            obj.(fname) = utils.xml.getFromType(fieldnameNode, inhists);
+            
+          end 
+        
+        end
+        objs = [objs obj];
+        
+      end
+    end
+    
+    objs = reshape(objs, objShape);
+    
+  end
+  
+end
+
+