1 /*global $jni*/
  2 
  3 /**
  4  * @class Represent an array of primitive types (byte[], char[] etc.)
  5 **/
  6 $jni.JavaPrimitiveArray = function() { };
  7 
  8 /**
  9  * Returns a JavaScript representation of the object
 10  *
 11  * @function
 12  * @returns {object}
 13 **/
 14 $jni.JavaPrimitiveArray.prototype.toJS = function() { };
 15 
 16