(self)
| 345 | |
| 346 | @property |
| 347 | def fullName(self): |
| 348 | categories, tail = self.__parseRawName() |
| 349 | return '{}{}'.format(''.join('[{}]'.format(c) for c in categories), tail) |
| 350 | |
| 351 | @property |
| 352 | def shortName(self): |
nothing calls this directly
no test coverage detected