Exemplo n.º 1
0
	def convert_xml_to_dict(self, xmlElt, bIterable=False):
		if xmlElt is not None:
			if bIterable:
				return xml_to_iter_dict(xmlElt, self.dicType)
			else:
				return xml_to_dict(xmlElt, self.dicType)
		else:
			return None
Exemplo n.º 2
0
	def get_parameters(self):
		if self.xmlParameters is not None:
			return xml_to_dict(self.xmlParameters, self.dicType)
		else:
			return None