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
def get_parameters(self): if self.xmlParameters is not None: return xml_to_dict(self.xmlParameters, self.dicType) else: return None