/* * 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.Int16Array; /** * JS native implementation of {@link Int16Array}. */ public final class Int16ArrayNative extends ArrayBufferViewNative implements Int16Array { /** * @param buffer * @return a {@link Int16Array} instance */ public static native Int16ArrayNative create(ArrayBuffer buffer) /*-{ return new Int16Array(buffer); }-*/; /** * @param buffer * @param byteOffset * @return a {@link Int16Array} instance */ public static native Int16ArrayNative create(ArrayBuffer buffer, int byteOffset) /*-{ return new Int16Array(buffer, byteOffset); }-*/; /** * @param buffer * @param byteOffset * @param length * @return a {@link Int16Array} instance */ public static native Int16ArrayNative create(ArrayBuffer buffer, int byteOffset, int length) /*-{ return new Int16Array(buffer, byteOffset, length); }-*/; /** * @param length * @return a {@link Int16Array} instance */ public static native Int16ArrayNative create(int length) /*-{ return new Int16Array(length); }-*/; protected Int16ArrayNative() { } @Override public native short 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(Int16Array array) /*-{ this.set(array); }-*/; @Override public native void set(Int16Array array, int offset) /*-{ this.set(array, offset); }-*/; @Override public void set(short[] array) { set(array, 0); } @Override public void set(short[] array, int offset) { set(JsArrayUtils.readOnlyJsArray(array), offset); } @Override public native Int16Array subarray(int begin) /*-{ return this.subarray(begin); }-*/; @Override public native Int16Array subarray(int begin, int end) /*-{ return this.subarray(begin, end); }-*/; private native void set(JavaScriptObject array, int offset) /*-{ this.set(array, offset); }-*/; }