Return a comment string for the object. Most objects just use their name as the comment, but PBXProject uses different values. The returned comment is not escaped and does not have any comment marker strings applied to it.
(self)
| 375 | raise NotImplementedError(self.__class__.__name__ + " must implement Name") |
| 376 | |
| 377 | def Comment(self): |
| 378 | """Return a comment string for the object. |
| 379 | |
| 380 | Most objects just use their name as the comment, but PBXProject uses |
| 381 | different values. |
| 382 | |
| 383 | The returned comment is not escaped and does not have any comment marker |
| 384 | strings applied to it. |
| 385 | """ |
| 386 | |
| 387 | return self.Name() |
| 388 | |
| 389 | def Hashables(self): |
| 390 | hashables = [self.__class__.__name__] |