Add the specified system flag to this Flags object. @param flag the flag to add
(Flag flag)
| 201 | * @param flag the flag to add |
| 202 | */ |
| 203 | public void add(Flag flag) { |
| 204 | system_flags |= flag.bit; |
| 205 | } |
| 206 | |
| 207 | /** |
| 208 | * Add the specified user flag to this Flags object. |
no test coverage detected