Search in sources :

Example 26 with JSONString

use of com.google.gwt.json.client.JSONString in project rstudio by rstudio.

the class RemoteServer method setSourceDocumentDirty.

public void setSourceDocumentDirty(String docId, boolean dirty, ServerRequestCallback<Void> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(docId));
    params.set(1, JSONBoolean.getInstance(dirty));
    sendRequest(RPC_SCOPE, "set_source_document_dirty", params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 27 with JSONString

use of com.google.gwt.json.client.JSONString in project rstudio by rstudio.

the class RemoteServer method getSetGenericCall.

@Override
public void getSetGenericCall(String call, ServerRequestCallback<SetGenericCall> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(call));
    sendRequest(RPC_SCOPE, GET_SET_GENERIC_CALL, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 28 with JSONString

use of com.google.gwt.json.client.JSONString in project rstudio by rstudio.

the class RemoteServer method registerUserToken.

@Override
public void registerUserToken(String serverName, String accountName, int userId, RSConnectPreAuthToken token, ServerRequestCallback<Void> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(serverName));
    params.set(1, new JSONString(accountName));
    params.set(2, new JSONNumber(userId));
    params.set(3, new JSONString(token.getToken()));
    params.set(4, new JSONString(token.getPrivateKey()));
    sendRequest(RPC_SCOPE, REGISTER_USER_TOKEN, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONNumber(com.google.gwt.json.client.JSONNumber) JSONString(com.google.gwt.json.client.JSONString)

Example 29 with JSONString

use of com.google.gwt.json.client.JSONString in project rstudio by rstudio.

the class RemoteServer method getSourceDocument.

public void getSourceDocument(String docId, ServerRequestCallback<SourceDocument> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(docId));
    sendRequest(RPC_SCOPE, GET_SOURCE_DOCUMENT, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 30 with JSONString

use of com.google.gwt.json.client.JSONString in project rstudio by rstudio.

the class RemoteServer method getSetMethodCall.

@Override
public void getSetMethodCall(String call, ServerRequestCallback<SetMethodCall> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(call));
    sendRequest(RPC_SCOPE, GET_SET_METHOD_CALL, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Aggregations

JSONString (com.google.gwt.json.client.JSONString)230 JSONArray (com.google.gwt.json.client.JSONArray)179 JSONNumber (com.google.gwt.json.client.JSONNumber)71 JSONObject (com.google.gwt.json.client.JSONObject)69 JavaScriptObject (com.google.gwt.core.client.JavaScriptObject)6 HashMap (java.util.HashMap)6 Breakpoint (org.rstudio.studio.client.common.debugging.model.Breakpoint)6 Point (org.rstudio.studio.client.workbench.views.plots.model.Point)6 JSONValue (com.google.gwt.json.client.JSONValue)5 JsonCallbackEvents (cz.metacentrum.perun.webgui.json.JsonCallbackEvents)5 PerunError (cz.metacentrum.perun.webgui.model.PerunError)5 ArrayList (java.util.ArrayList)5 JsArrayString (com.google.gwt.core.client.JsArrayString)4 Map (java.util.Map)4 JsonPostClient (cz.metacentrum.perun.webgui.json.JsonPostClient)3 ClickEvent (com.google.gwt.event.dom.client.ClickEvent)2 ClickHandler (com.google.gwt.event.dom.client.ClickHandler)2 JSONBoolean (com.google.gwt.json.client.JSONBoolean)2 GwtTestTest (com.googlecode.gwt.test.GwtTestTest)2 GetFacilityState (cz.metacentrum.perun.webgui.json.propagationStatsReader.GetFacilityState)2