Example usage for com.google.gwt.json.client JSONNull getInstance

List of usage examples for com.google.gwt.json.client JSONNull getInstance

Introduction

In this page you can find the example usage for com.google.gwt.json.client JSONNull getInstance.

Prototype

public static JSONNull getInstance() 

Source Link

Document

Returns the singleton null-valued JSON object.

Usage

From source file:ca.nanometrics.gflot.client.util.JSONArrayWrapper.java

License:Open Source License

protected void set(int index, String value) {
    JSONValue val = JSONNull.getInstance();
    if (value != null) {
        val = new JSONString(value);
    }/*from   w  ww . j  a va 2  s. co  m*/
    set(index, val);
}

From source file:ca.nanometrics.gflot.client.util.JSONArrayWrapper.java

License:Open Source License

protected void push(String value) {
    JSONValue val = JSONNull.getInstance();
    if (value != null) {
        val = new JSONString(value);
    }//w w w  .  j a  v a  2 s. c  o  m
    set(++currentIndex, val);
}

From source file:ca.nanometrics.gflot.client.util.JSONArrayWrapper.java

License:Open Source License

protected void set(int index, Number value) {
    JSONValue val = JSONNull.getInstance();
    if (value != null) {
        val = new JSONNumber(value.doubleValue());
    }//w ww.j  a  v a2 s  . c  om
    set(index, val);
}

From source file:ca.nanometrics.gflot.client.util.JSONArrayWrapper.java

License:Open Source License

protected void push(Number value) {
    JSONValue val = JSONNull.getInstance();
    if (value != null) {
        val = new JSONNumber(value.doubleValue());
    }/*from w  ww  . j a va 2s.c om*/
    set(++currentIndex, val);
}

From source file:ca.nanometrics.gflot.client.util.JSONArrayWrapper.java

License:Open Source License

protected void set(int index, JSONWrapper value) {
    JSONValue val = JSONNull.getInstance();
    if (value != null) {
        val = value.getWrappedObj();
    }/*  www  .  j av a 2  s. c  o  m*/
    set(index, val);
}

From source file:ca.nanometrics.gflot.client.util.JSONArrayWrapper.java

License:Open Source License

protected void push(JSONWrapper value) {
    JSONValue val = JSONNull.getInstance();
    if (value != null) {
        val = value.getWrappedObj();
    }//from  w  w  w . j av  a2 s  .co  m
    set(++currentIndex, val);
}

From source file:ca.nanometrics.gflot.client.util.JSONObjectWrapper.java

License:Open Source License

protected void put(String key, String value) {
    JSONValue val = JSONNull.getInstance();
    if (value != null) {
        val = new JSONString(value);
    }/*from  w  w w . ja va  2  s.  co m*/
    jsonObj.put(key, val);
}

From source file:ca.nanometrics.gflot.client.util.JSONObjectWrapper.java

License:Open Source License

protected void put(String key, Number value) {
    JSONValue val = JSONNull.getInstance();
    if (value != null) {
        val = new JSONNumber(value.doubleValue());
    }//ww w. j  a v a2  s.  c o  m
    jsonObj.put(key, val);
}

From source file:ca.nanometrics.gflot.client.util.JSONObjectWrapper.java

License:Open Source License

protected void put(String key, JSONWrapper value) {
    JSONValue val = JSONNull.getInstance();
    if (value != null) {
        val = value.getWrappedObj();
    }/*  w  ww. jav a2  s  . co m*/
    jsonObj.put(key, val);
}

From source file:ca.nanometrics.gflot.client.util.JSONObjectWrapper.java

License:Open Source License

protected void clear(String key) {
    if (jsonObj.containsKey(key)) {
        jsonObj.put(key, JSONNull.getInstance());
    }
}