All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gwtopenmaps.openlayers.client.util.JIntArrayImpl Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package org.gwtopenmaps.openlayers.client.util;





class JIntArrayImpl
{

	public static native void arraySet(JSObject array, int index, int value) /*-{
		array[index] = value;
	}-*/;

	public static native int getAsInt(JSObject array, int pos)/*-{
		if (array) return array[pos];
		return 0;
	}-*/;

	public static native void push(JSObject array, int i)/*-{
		array.push(i);
	}-*/;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy