Test if the given Flags are set in this message.
(Flags.Flag flag)
| 1099 | * Test if the given Flags are set in this message. |
| 1100 | */ |
| 1101 | @Override |
| 1102 | public synchronized boolean isSet(Flags.Flag flag) |
| 1103 | throws MessagingException { |
| 1104 | checkExpunged(); |
| 1105 | loadFlags(); |
| 1106 | return super.isSet(flag); |
| 1107 | } |
| 1108 | |
| 1109 | /** |
| 1110 | * Set/Unset the given flags in this message. |
no test coverage detected