All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.koushikdutta.quack.QuackJsonObject Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy