Get the B{fully} qualified name of this attribute @return: The fully qualified name. @rtype: basestring
(self)
| 62 | return a |
| 63 | |
| 64 | def qname(self): |
| 65 | """ |
| 66 | Get the B{fully} qualified name of this attribute |
| 67 | @return: The fully qualified name. |
| 68 | @rtype: basestring |
| 69 | """ |
| 70 | if self.prefix is None: |
| 71 | return self.name |
| 72 | else: |
| 73 | return ':'.join((self.prefix, self.name)) |
| 74 | |
| 75 | def setValue(self, value): |
| 76 | """ |
no outgoing calls
no test coverage detected