blob: f6ace6cfd528bc6995d731d53954c8e109704362 [file] [log] [blame]
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.typedarrays.client;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.JsArrayUtils;
import com.google.gwt.typedarrays.shared.ArrayBuffer;
import com.google.gwt.typedarrays.shared.Int32Array;
/**
* JS native implementation of {@link Int32Array}.
*/
public final class Int32ArrayNative extends ArrayBufferViewNative implements Int32Array {
/**
* @param buffer
* @return a {@link Int32Array} instance
*/
public static native Int32ArrayNative create(ArrayBuffer buffer) /*-{
return new Int32Array(buffer);
}-*/;
/**
* @param buffer
* @param byteOffset
* @return a {@link Int32Array} instance
*/
public static native Int32ArrayNative create(ArrayBuffer buffer, int byteOffset) /*-{
return new Int32Array(buffer, byteOffset);
}-*/;
/**
* @param buffer
* @param byteOffset
* @param length
* @return a {@link Int32Array} instance
*/
public static native Int32ArrayNative create(ArrayBuffer buffer, int byteOffset, int length) /*-{
return new Int32Array(buffer, byteOffset, length);
}-*/;
/**
* @param length
* @return a {@link Int32Array} instance
*/
public static native Int32ArrayNative create(int length) /*-{
return new Int32Array(length);
}-*/;
protected Int32ArrayNative() {
}
@Override
public native int get(int index) /*-{
return this[index];
}-*/;
@Override
public native int length() /*-{
return this.length;
}-*/;
@Override
public native void set(int index, int value) /*-{
this[index] = value;
}-*/;
@Override
public void set(int[] array) {
set(array, 0);
}
@Override
public void set(int[] array, int offset) {
set(JsArrayUtils.readOnlyJsArray(array), offset);
}
@Override
public native void set(Int32Array array) /*-{
this.set(array);
}-*/;
@Override
public native void set(Int32Array array, int offset) /*-{
this.set(array, offset);
}-*/;
@Override
public native Int32Array subarray(int begin) /*-{
return this.subarray(begin);
}-*/;
@Override
public native Int32Array subarray(int begin, int end) /*-{
return this.subarray(begin, end);
}-*/;
private native void set(JavaScriptObject array, int offset) /*-{
this.set(array, offset);
}-*/;
}