| Conditions | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | """ |
||
| 44 | def _generate_xml_common(self, parent): |
||
| 45 | """ |
||
| 46 | Generates the common XML elements of the XML element for this |
||
| 47 | |||
| 48 | :param xml.etree.ElementTree.Element parent: The parent XML element (i.e. the resource XML element). |
||
| 49 | """ |
||
| 50 | resource_name = SubElement(parent, 'ResourceName') |
||
| 51 | resource_name.text = self._name |
||
| 52 | |||
| 54 |