MCPcopy Create free account
hub / github.com/dumbledore/AlbiteREADER / setSize

Method setSize

src/gnu/zip/ZipEntry.java:245–251  ·  view source on GitHub ↗

Sets the size of the uncompressed data. @exception IllegalArgumentException if size is not in 0..0xffffffffL

(long size)

Source from the content-addressed store, hash-verified

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.

Callers 3

readEntriesMethod · 0.95
getNextEntryMethod · 0.80
readDataDescrMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected