(int index, short value)
| 193 | } |
| 194 | |
| 195 | @Override |
| 196 | public ByteBuffer putShort(int index, short value) { |
| 197 | if (index < 0 || (long) index + 2 > limit) { |
| 198 | throw new IndexOutOfBoundsException(); |
| 199 | } |
| 200 | store(index, value); |
| 201 | return this; |
| 202 | } |
| 203 | |
| 204 | @Override |
| 205 | public ByteBuffer putShort(short value) { |