1 /*global $jni*/
  2 
  3 /**
  4  * @class Represents a Java class
  5 **/
  6 $jni.JavaClass = function() { };
  7 
  8 /**
  9  * Returns the static member of the class
 10  *
 11  * @function
 12  * @param {string} name
 13  * @returns {$jni.JavaObject}
 14 **/
 15 $jni.JavaClass.prototype.getStatic = function(name) { };
 16 
 17 /**
 18  * Returns the name of the class
 19  *
 20  * @function
 21  * @returns {string}
 22 **/
 23 $jni.JavaClass.prototype.name = function() { };
 24 
 25 /**
 26  * Returns a JavaScript representation of the object
 27  *
 28  * @function
 29  * @returns {object}
 30 **/
 31 $jni.JavaClass.prototype.toJS = function() { };
 32 
 33