Returns the OVAL ID for this element, or None if 1. This object was instantiated without an Element 2. The underlying element does not have an "id" attribute
(self)
| 727 | self.element = element |
| 728 | |
| 729 | def getId(self): |
| 730 | """ |
| 731 | Returns the OVAL ID for this element, or None if |
| 732 | 1. This object was instantiated without an Element |
| 733 | 2. The underlying element does not have an "id" attribute |
| 734 | """ |
| 735 | if self.element is None: |
| 736 | return None |
| 737 | |
| 738 | return self.element.get("id") |
| 739 | |
| 740 | def setId(self, ovalid): |
| 741 | """ |