Package com.google.gwt.json.client

Examples of com.google.gwt.json.client.JSONObject


    /**
     * @return the range for y axis
     */
    public Range getY()
    {
        JSONObject obj = getObject( Y_AXIS_KEY );
        if ( null == obj )
        {
            return null;
        }
        else
View Full Code Here


    {
        if ( index >= size() )
        {
            return null;
        }
        JSONObject obj = getObject( index );
        if ( null == obj )
        {
            return null;
        }
        else
View Full Code Here

        return new JSONObjectWrapper( obj );
    }

    public static JSONObjectWrapper wrapArrayIntoObject( String objectName, String[] values )
    {
        JSONObject jsonObj = new JSONObject();
        jsonObj.put( objectName, wrapArray( values ).getWrappedObj() );
        return wrapObject( jsonObj );
    }
View Full Code Here

        return wrapObject( jsonObj );
    }

    public static JSONObjectWrapper wrapArrayIntoObject( String objectName, Double[] values )
    {
        JSONObject jsonObj = new JSONObject();
        jsonObj.put( objectName, wrapArray( values ).getWrappedObj() );
        return wrapObject( jsonObj );
    }
View Full Code Here

  public Integer getDataIndex() {
    return getInteger(DATA_INDEX);
  }

  public Series getSeries() {
    JSONObject obj = getObject(SERIES);
    if (obj == null) {
      return null;
    }
    return new Series(obj);
  }
View Full Code Here

        JSONString str = value.isString();
        if ( null != str )
        {
            return new String[] { str.stringValue() };
        }
        JSONObject obj = value.isObject();
        if ( null != obj )
        {
            JSONValue colors = obj.get( BACKGROUND_COLORS_KEY );
            JSONArray array = colors.isArray();
            if ( null != array )
            {
                return new String[] { array.get( 0 ).isString().stringValue(), array.get( 1 ).isString().stringValue() };
            }
View Full Code Here

   */
  WjrConfig createWjrConfigFromJson(String jsonString) {
    WjrConfigMeta m = WjrConfigMeta.meta();
    WjrConfig wjrConfig = new WjrConfig();

    JSONObject j = JSONParser.parseStrict(jsonString).isObject();
    wjrConfig.setConfigId(j.get(m.configId).isString().stringValue());
    wjrConfig.setConfigName(j.get(m.configName).isString().stringValue());
    wjrConfig.setCpumsEnabled(j.get(m.cpumsEnabled).isString().stringValue());
    wjrConfig.setApimsEnabled(j.get(m.apimsEnabled).isString().stringValue());
    wjrConfig.setLogHookEnabled(j
      .get(m.logHookEnabled)
      .isString()
      .stringValue());
    wjrConfig.setLogHookTimezone(j
      .get(m.logHookTimezone)
      .isString()
      .stringValue());
    wjrConfig.setRetryOverQuotaEnabled(j
      .get(m.retryOverQuotaEnabled)
      .isString()
      .stringValue());
    wjrConfig.setRetryOverQuotaInterval(j
      .get(m.retryOverQuotaInterval)
      .isString()
      .stringValue());
    wjrConfig.setRetryOverQuotaMaxCount(j
      .get(m.retryOverQuotaMaxCount)
      .isString()
      .stringValue());

    return wjrConfig;
View Full Code Here

   */
  WjrStore createWjrStoreFromJson(String jsonString) {
    WjrStoreMeta m = WjrStoreMeta.meta();
    WjrStore wjrStore = new WjrStore();

    JSONObject j = JSONParser.parseStrict(jsonString).isObject();

    JSONArray classItems = j.get(m.classItems).isArray();
    int classItemsSize = classItems.size();
    for (int i = 0; i < classItemsSize; i++) {
      wjrStore.addClassItem(createWjrClassItemFromJson(classItems
        .get(i)
        .toString()));
    }

    JSONArray methodItems = j.get(m.methodItems).isArray();
    int methodItemsSize = methodItems.size();
    for (int i = 0; i < methodItemsSize; i++) {
      wjrStore.addMethodItem(createWjrMethodItemFromJson(methodItems
        .get(i)
        .toString()));
View Full Code Here

   *          the Json string.
   * @return the created WjrMethodItem instance.
   */
  WjrMethodItem createWjrMethodItemFromJson(String jsonString) {
    WjrMethodItemMeta m = WjrMethodItemMeta.meta();
    JSONObject j = JSONParser.parseStrict(jsonString).isObject();

    String className = j.get(m.className).isString().stringValue();
    String methodName = j.get(m.methodName).isString().stringValue();
    WjrMethodItem wjrMethodItem = new WjrMethodItem(className, methodName);

    wjrMethodItem.setTrace(j.get(m.trace).isString().stringValue());
    wjrMethodItem.setLog(j.get(m.log).isString().stringValue());
    wjrMethodItem.setTime(j.get(m.time).isString().stringValue());
    wjrMethodItem.setCpuTime(j.get(m.cpuTime).isString().stringValue());
    wjrMethodItem.setApiTime(j.get(m.apiTime).isString().stringValue());
    wjrMethodItem.setOverQuota(j.get(m.isOverQuota).isBoolean().booleanValue());
    wjrMethodItem.setRetryCount(new Integer(j
      .get(m.retryCount)
      .isNumber()
      .toString()));
    wjrMethodItem.setMaxRetryCount(new Integer(j
      .get(m.maxRetryCount)
      .isNumber()
      .toString()));
    wjrMethodItem.setWaitingSeconds(new Integer(j
      .get(m.waitingSeconds)
      .isNumber()
      .toString()));
    wjrMethodItem.setState(State.valueOf(j
      .get(m.state)
      .isString()
      .stringValue()));

    return wjrMethodItem;
View Full Code Here

        return wrapObject( jsonObj );
    }

    public static JSONObjectWrapper wrapArrayIntoObject( String objectName, JSONWrapper[] values )
    {
        JSONObject jsonObj = new JSONObject();
        jsonObj.put( objectName, wrapArray( values ).getWrappedObj() );
        return wrapObject( jsonObj );
    }
View Full Code Here

TOP

Related Classes of com.google.gwt.json.client.JSONObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.