Reads a byte 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)
| 3301 | * @return the read value. |
| 3302 | */ |
| 3303 | public int readByte(final int offset) { |
| 3304 | return b[offset] & 0xFF; |
| 3305 | } |
| 3306 | |
| 3307 | /** |
| 3308 | * Reads an unsigned short value in {@link #b}. <i>This method is intended for {@link Attribute} |
no outgoing calls
no test coverage detected