Set value at location being pointed to. This is equivalent to the expression ((jlong )((char )Pointer + offset)) = value . @param offset byte offset from pointer at which value must be set @param value long value to set
(long offset, long value)
| 1042 | * @param value <code>long</code> value to set |
| 1043 | */ |
| 1044 | public void setLong(long offset, long value) { |
| 1045 | Native.setLong(this, this.peer, offset, value); |
| 1046 | } |
| 1047 | |
| 1048 | /** |
| 1049 | * Set <code>value</code> at location being pointed to. This is equivalent |
no test coverage detected