(self)
| 443 | |
| 444 | @property |
| 445 | def fullName(self): |
| 446 | categories, tail = self.__parseRawName() |
| 447 | return '{}{}'.format(''.join('[{}]'.format(c) for c in categories), tail) |
| 448 | |
| 449 | @property |
| 450 | def shortName(self): |
nothing calls this directly
no test coverage detected