Set the bits. @param holder the int data containing the bits we're interested in @return the value of holder with the specified bits set to 1
(final int holder)
| 240 | */ |
| 241 | |
| 242 | public int set(final int holder) |
| 243 | { |
| 244 | return holder | _mask; |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Set the bits. |
no outgoing calls
no test coverage detected