Example usage for org.json JSONObject subclass-usage

List of usage examples for org.json JSONObject subclass-usage

Introduction

In this page you can find the example usage for org.json JSONObject subclass-usage.

Usage

From source file au.com.borner.salesforce.client.rest.domain.APIVersionResult.java

/**
 * @author Mark Borner (gzhomzb)
 */
public class APIVersionResult extends JSONObject {

    public APIVersionResult(String source) throws JSONException {

From source file au.com.borner.salesforce.client.rest.domain.AbstractJSONObject.java

/**
 * An Abstract JSONObject with common utility methods
 *
 * @author mark
 */
public abstract class AbstractJSONObject extends JSONObject {

From source file org.jraf.irondad.handler.HandlerConfig.java

public class HandlerConfig extends JSONObject {

}

From source file org.loklak.server.Accounting.java

/**
 * Accounting asks: what has the user done. This class holds user activities.
 */
public class Accounting extends JSONObject {

    private static final JSONObject EMPTY_MAP = new JSONObject(new TreeMap<String, String>());

From source file com.deployd.DeploydObject.java

public class DeploydObject extends JSONObject {
    private String resource;
    public HashMap<String, DeploydObject> junctions = new HashMap<String, DeploydObject>();

    public DeploydObject(String resource) {
        this.resource = resource;

From source file com.joyfulmongo.db.JFMongoCmdResult.java

public class JFMongoCmdResult extends JSONObject {
    JFMongoCmdResult() {
        super();
    }

    void setObjectId(String objectId) {

From source file santandersensors_server.JsonUtils.java

/**
 *
 * @author giovanni
 */
public class JsonUtils extends JSONObject {
    protected JSONObject json = new JSONObject();

From source file ai.susi.mind.SusiThought.java

/**
 * A thought is a piece of data that can be remembered. The structure or the thought can be
 * modeled as a table which may be created using the retrieval of information from elsewhere
 * of the current argument.
 */
public class SusiThought extends JSONObject {

From source file ch.sebastienzurfluh.swissmuseumguides.contentprovider.model.io.structure.RowAbstract.java

/**
 * 
 *
 *
 * @author Sebastien Zurfluh
 *

From source file com.deployd.DeploydResult.java

public class DeploydResult extends JSONObject {

}