com.koushikdutta.quack.QuackJsonObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickjs Show documentation
Show all versions of quickjs Show documentation
The quickjs embeddable Javascript engine packaged for Java.
package com.koushikdutta.quack;
/**
* Will be coerced into a JSON object when received by the JavaScript runtime. The string must be valid JSON.
*/
public final class QuackJsonObject {
final public String json;
public QuackJsonObject(String json) {
this.json = json;
}
}