(self, value)
| 1539 | return DescriptorArray.TYPES[self.Decode(0, 3, value)] |
| 1540 | |
| 1541 | def Attributes(self, value): |
| 1542 | attributes = self.Decode(3, 3, value) |
| 1543 | result = [] |
| 1544 | if (attributes & 0): result += ["ReadOnly"] |
| 1545 | if (attributes & 1): result += ["DontEnum"] |
| 1546 | if (attributes & 2): result += ["DontDelete"] |
| 1547 | return "[" + (",".join(result)) + "]" |
| 1548 | |
| 1549 | def Deleted(self, value): |
| 1550 | return self.Decode(6, 1, value) == 1 |