(int v)
| 126 | return (byte[])this.get(v); |
| 127 | } |
| 128 | public synchronized long foreignArray(int v) { |
| 129 | Object[] a = new Object[v]; |
| 130 | return track(a); |
| 131 | } |
| 132 | public synchronized void foreignArraySet(long v, long val, int idx) { |
| 133 | Object[] a = (Object[])this.get(v); |
| 134 | a[idx] = this.get(val); |