Sets the size of the uncompressed data. @exception IllegalArgumentException if size is not in 0..0xffffffffL
(long size)
| 243 | * @exception IllegalArgumentException if size is not in 0..0xffffffffL |
| 244 | */ |
| 245 | public void setSize(long size) |
| 246 | { |
| 247 | if ((size & 0xffffffff00000000L) != 0) |
| 248 | throw new IllegalArgumentException(); |
| 249 | this.size = (int) size; |
| 250 | this.known |= KNOWN_SIZE; |
| 251 | } |
| 252 | |
| 253 | /** |
| 254 | * Gets the size of the uncompressed data. |
no outgoing calls
no test coverage detected