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