1 /*global $jni*/
  2 
  3 /**
  4  * Creates a new instance of a java class. This constructor is only needed for creating Java instances of classes that have not been imported with use().
  5  *
  6  * @param {string} className The name of the class of the object to construct
  7  * @param varargs Constructor arguments
  8  * @see $jni#.use
  9  *
 10  * @class Represents a Java instance
 11 **/
 12 $jni.JavaObject = function(varargs) { };
 13 
 14 /**
 15  * Returns a JavaScript representation of the object
 16  *
 17  * @function
 18  * @returns {object}
 19 **/
 20 $jni.JavaObject.prototype.toJS = function() { };
 21 
 22