Set value at location being pointed to. This is equivalent to the expression ((jint )((char )Pointer + offset)) = value . @param offset byte offset from pointer at which value must be set @param value int value to set
(long offset, int value)
| 1029 | * @param value <code>int</code> value to set |
| 1030 | */ |
| 1031 | public void setInt(long offset, int value) { |
| 1032 | Native.setInt(this, this.peer, offset, value); |
| 1033 | } |
| 1034 | |
| 1035 | /** |
| 1036 | * Set <code>value</code> at location being pointed to. This is equivalent |