com.arcbees.analytics.client.JsonOptionsCallback.java Source code

Java tutorial

Introduction

Here is the source code for com.arcbees.analytics.client.JsonOptionsCallback.java

Source

/**
 * Copyright 2014 ArcBees Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

package com.arcbees.analytics.client;

import com.arcbees.analytics.shared.HitCallback;
import com.arcbees.analytics.shared.options.OptionsCallback;
import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.json.client.JSONBoolean;
import com.google.gwt.json.client.JSONNull;
import com.google.gwt.json.client.JSONNumber;
import com.google.gwt.json.client.JSONObject;
import com.google.gwt.json.client.JSONString;

public abstract class JsonOptionsCallback extends OptionsCallback<JSONObject> {
    private JSONObject jsonObject;

    public JsonOptionsCallback() {
        this.jsonObject = new JSONObject();
    }

    @Override
    public void addHitCallback(final HitCallback callback) {
        addHitCallback(jsonObject.getJavaScriptObject(), new GuaranteedHitCallback(callback));
    }

    private native void addHitCallback(JavaScriptObject jsObject, HitCallback callback) /*-{
                                                                                        jsObject.hitCallback = function() {
                                                                                        callback.@com.arcbees.analytics.shared.HitCallback::onCallback()();
                                                                                        }
                                                                                        }-*/;

    @Override
    public JSONObject getOptions() {
        return jsonObject;
    }

    @Override
    public void putBoolean(final String fieldName, final boolean value) {
        jsonObject.put(fieldName, JSONBoolean.getInstance(value));
    }

    @Override
    public void putNumber(final String fieldName, final double value) {
        jsonObject.put(fieldName, new JSONNumber(value));
    }

    @Override
    public void putText(final String fieldName, final String value) {
        jsonObject.put(fieldName, value == null ? JSONNull.getInstance() : new JSONString(value));
    }
}