Package | Description |
---|---|
com.teamdev.jxbrowser.js |
This package provides classes that allow you to work with the JavaScript to Java bridge.
|
Modifier and Type | Interface and Description |
---|---|
interface |
JsArray
A JavaScript array.
|
interface |
JsArrayBuffer
A JavaScript array buffer.
|
interface |
JsFunction
Represents a JavaScript function that can be passed between Java and JavaScript as a method
argument or a return value.
|
interface |
JsMap
A JavaScript map.
|
interface |
JsPromise
A JavaScript
Promise . |
interface |
JsSet
A JavaScript set.
|
Modifier and Type | Method and Description |
---|---|
<T> T |
JsFunction.invoke(JsObject object,
java.lang.Object... args)
Invokes this function on the given
object with the specified args . |
<T> java.util.concurrent.CompletableFuture<T> |
JsFunction.invokeAsync(JsObject object,
java.lang.Object... args)
Invokes this function on the given
object with the specified args . |
java.lang.String |
Json.stringify(JsObject jsObject)
Converts the given JavaScript object into a JSON string.
|