@type FlagBit: int @param FlagBit: One of the L{Flags}. @rtype: bool @return: Boolean value of the requested flag.
(self, FlagBit)
| 734 | self.set_context(context) |
| 735 | |
| 736 | def get_flag_value(self, FlagBit): |
| 737 | """ |
| 738 | @type FlagBit: int |
| 739 | @param FlagBit: One of the L{Flags}. |
| 740 | |
| 741 | @rtype: bool |
| 742 | @return: Boolean value of the requested flag. |
| 743 | """ |
| 744 | return bool(self.get_flags(FlagBit)) |
| 745 | |
| 746 | def set_flag_value(self, FlagBit, FlagValue): |
| 747 | """ |