Search in sources :

Example 21 with JSONString

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

the class RemoteServer method getSlideNavigationForCode.

@Override
public void getSlideNavigationForCode(String code, String baseDir, ServerRequestCallback<SlideNavigation> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(code));
    params.set(1, new JSONString(baseDir));
    sendRequest(RPC_SCOPE, GET_SLIDE_NAVIGATION_FOR_CODE, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 22 with JSONString

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

the class RemoteServer method getDplyrJoinCompletionsString.

public void getDplyrJoinCompletionsString(String token, String string, String cursorPos, ServerRequestCallback<Completions> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(token));
    params.set(1, new JSONString(string));
    params.set(2, new JSONString(cursorPos));
    sendRequest(RPC_SCOPE, GET_DPLYR_JOIN_COMPLETIONS_STRING, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 23 with JSONString

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

the class RemoteServer method synctexForwardSearch.

@Override
public void synctexForwardSearch(String rootDocument, SourceLocation sourceLocation, ServerRequestCallback<PdfLocation> callback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(rootDocument));
    params.set(1, new JSONObject(sourceLocation));
    sendRequest(RPC_SCOPE, SYNCTEX_FORWARD_SEARCH, params, callback);
}
Also used : JSONObject(com.google.gwt.json.client.JSONObject) JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 24 with JSONString

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

the class RemoteServer method refreshChunkOutput.

@Override
public void refreshChunkOutput(String docPath, String docId, String contextId, String requestId, String chunkId, ServerRequestCallback<NotebookDocQueue> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(docPath == null ? "" : docPath));
    params.set(1, new JSONString(docId));
    params.set(2, new JSONString(contextId));
    params.set(3, new JSONString(requestId));
    params.set(4, new JSONString(chunkId));
    sendRequest(RPC_SCOPE, "refresh_chunk_output", params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 25 with JSONString

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

the class RemoteServer method setChunkConsole.

@Override
public void setChunkConsole(String docId, String chunkId, int commitMode, int execMode, int execScope, String options, int pixelWidth, int charWidth, ServerRequestCallback<RmdChunkOptions> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(docId));
    params.set(1, new JSONString(chunkId));
    params.set(2, new JSONNumber(commitMode));
    params.set(3, new JSONNumber(execMode));
    params.set(4, new JSONNumber(execScope));
    params.set(5, new JSONString(options));
    params.set(6, new JSONNumber(pixelWidth));
    params.set(7, new JSONNumber(charWidth));
    sendRequest(RPC_SCOPE, "set_chunk_console", 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)

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