FIXME: Get rid of the int cast as soon as the ffi is fixed

Property definitions

android $ NativeBundle :: get_long_array
	# FIXME: Get rid of the int cast as soon as the ffi is fixed
	fun get_long_array(key: JavaString): Array[Int]
		import Array[Int], Array[Int].add in "Java" `{
		long[] java_array = self.getLongArray(key);
		NitObject nit_array = new_Array_of_Int();

		if (java_array == null) return nit_array;

		for(int i=0; i < java_array.length; ++i)
			Array_of_Int_add(nit_array, java_array[i]);

		return nit_array;
	`}
lib/android/bundle/bundle.nit:355,2--367,3