1 /*global $jni*/
  2 
  3 /**
  4  * Returns a JavaChar
  5  *
  6  * @param charValue Either an Unicode code point code, or string of length 1
  7  * @returns {JavaChar}
  8  *
  9  * @class Represents a primitive character (char)
 10 **/
 11 $jni.char = function(charValue) { };
 12 
 13 /**
 14  * Returns the code point of the character
 15  *
 16  * @function
 17  * @returns {number}
 18 **/
 19 $jni.char.prototype.codePoint = function() { };
 20 
 21 /**
 22  * Returns a JavaScript representation of the object
 23  *
 24  * @function
 25  * @returns {object}
 26 **/
 27 $jni.char.prototype.toJS = function() { };
 28 
 29 /**
 30  * Returns a string containing the character
 31  *
 32  * @function
 33  * @returns {string}
 34 **/
 35 $jni.char.prototype.toString = function() { };
 36 
 37