Reads a signed long value in #b. This method is intended for Attribute sub classes, and is normally not needed by class generators or adapters. @param offset the start offset of the value to be read in #b. @return the read value.
(final int offset)
| 3351 | * @return the read value. |
| 3352 | */ |
| 3353 | public long readLong(final int offset) { |
| 3354 | long l1 = readInt(offset); |
| 3355 | long l0 = readInt(offset + 4) & 0xFFFFFFFFL; |
| 3356 | return (l1 << 32) | l0; |
| 3357 | } |
| 3358 | |
| 3359 | /** |
| 3360 | * Reads a CONSTANT_Utf8 constant pool entry in {@link #b}. <i>This method is intended for {@link |
no test coverage detected