You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -370,7 +370,7 @@ Loads the class given by className such that it acts and feels like a javascript
370
370
371
371
__Arguments__
372
372
373
-
* className - The name of the class to create. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
373
+
* className - The name of the class to create. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
374
374
375
375
__Example__
376
376
@@ -394,7 +394,7 @@ otherwise it will be the first argument in the callback.
394
394
395
395
__Arguments__
396
396
397
-
* className - The name of the class to create. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
397
+
* className - The name of the class to create. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
398
398
* callback(err, item) - Callback to be called when the class is created.
399
399
400
400
__Example__
@@ -436,7 +436,7 @@ otherwise it will be the first argument in the callback.
436
436
437
437
__Arguments__
438
438
439
-
* className - The name of the class to call the method on. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
439
+
* className - The name of the class to call the method on. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
440
440
* methodName - The name of the method to call. The method name can include the full signature (see [Getting the full method signature](#getFullMethodSignature)).
441
441
* callback(err, item) - Callback to be called when the class is created.
442
442
@@ -483,7 +483,7 @@ Gets a static field value from the specified class.
483
483
484
484
__Arguments__
485
485
486
-
* className - The name of the class to get the value from. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
486
+
* className - The name of the class to get the value from. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
487
487
* fieldName - The name of the field to get the value from.
488
488
489
489
__Example__
@@ -498,7 +498,7 @@ Sets a static field value on the specified class.
498
498
499
499
__Arguments__
500
500
501
-
* className - The name of the class to set the value on. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
501
+
* className - The name of the class to set the value on. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
502
502
* fieldName - The name of the field to set the value on.
503
503
* newValue - The new value to assign to the field.
504
504
@@ -514,7 +514,7 @@ Creates a new java array of type class.
514
514
515
515
__Arguments__
516
516
517
-
* className - The name of the type of array elements. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
517
+
* className - The name of the type of array elements. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
518
518
* values - A javascript array of values to assign to the java array.
519
519
520
520
__Example__
@@ -616,7 +616,7 @@ garbage collection.
616
616
617
617
__Arguments__
618
618
619
-
* interfaceName - The name of the interface to proxy. For subclasses seperate using a '$' (eg. com.nearinfinty.MyClass$SubClass)
619
+
* interfaceName - The name of the interface to proxy. For nested classes seperate using a '$' (eg. com.nearinfinty.MyClass$NestedClass)
620
620
* functions - A hash of functions matching the function in the interface.
0 commit comments