Search in sources :

Example 86 with JSONString

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

the class RemoteServer method savePlotAsPdf.

public void savePlotAsPdf(FileSystemItem file, double widthInches, double heightInches, boolean useCairoPdf, boolean overwrite, ServerRequestCallback<Bool> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(file.getPath()));
    params.set(1, new JSONNumber(widthInches));
    params.set(2, new JSONNumber(heightInches));
    params.set(3, JSONBoolean.getInstance(useCairoPdf));
    params.set(4, JSONBoolean.getInstance(overwrite));
    sendRequest(RPC_SCOPE, SAVE_PLOT_AS_PDF, 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 87 with JSONString

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

the class RemoteServer method gitApplyPatch.

@Override
public void gitApplyPatch(String patch, PatchMode mode, String sourceEncoding, ServerRequestCallback<Void> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(patch));
    params.set(1, new JSONNumber(mode.getValue()));
    params.set(2, new JSONString(sourceEncoding));
    sendRequest(RPC_SCOPE, GIT_APPLY_PATCH, 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 88 with JSONString

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

the class RemoteServer method getFunctionState.

@Override
public void getFunctionState(String functionName, String fileName, int lineNumber, ServerRequestCallback<FunctionState> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(functionName));
    params.set(1, new JSONString(fileName));
    params.set(2, new JSONNumber(lineNumber));
    sendRequest(RPC_SCOPE, GET_FUNCTION_STATE, 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 89 with JSONString

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

the class RemoteServer method savePlotAs.

public void savePlotAs(FileSystemItem file, String format, int width, int height, boolean overwrite, ServerRequestCallback<Bool> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(file.getPath()));
    params.set(1, new JSONString(format));
    params.set(2, new JSONNumber(width));
    params.set(3, new JSONNumber(height));
    params.set(4, JSONBoolean.getInstance(overwrite));
    sendRequest(RPC_SCOPE, SAVE_PLOT_AS, 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 90 with JSONString

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

the class RemoteServer method executeDebugSource.

public void executeDebugSource(String fileName, ArrayList<Integer> topBreakLines, ArrayList<Integer> debugBreakLines, int step, int mode, ServerRequestCallback<TopLevelLineData> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(fileName));
    params.set(1, JSONUtils.toJSONNumberArray(topBreakLines));
    params.set(2, JSONUtils.toJSONNumberArray(debugBreakLines));
    params.set(3, new JSONNumber(step));
    params.set(4, new JSONNumber(mode));
    sendRequest(RPC_SCOPE, EXECUTE_DEBUG_SOURCE, 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)277 JSONArray (com.google.gwt.json.client.JSONArray)189 JSONObject (com.google.gwt.json.client.JSONObject)110 JSONNumber (com.google.gwt.json.client.JSONNumber)85 JSONValue (com.google.gwt.json.client.JSONValue)13 HashMap (java.util.HashMap)12 JavaScriptObject (com.google.gwt.core.client.JavaScriptObject)10 Map (java.util.Map)10 JsonCallbackEvents (cz.metacentrum.perun.webgui.json.JsonCallbackEvents)9 PerunError (cz.metacentrum.perun.webgui.model.PerunError)9 Material (org.cesiumjs.cs.scene.Material)9 MaterialOptions (org.cesiumjs.cs.scene.options.MaterialOptions)9 JsonPostClient (cz.metacentrum.perun.webgui.json.JsonPostClient)8 MetaData (com.ait.tooling.nativetools.client.collection.MetaData)7 ArrayList (java.util.ArrayList)7 JsArrayString (com.google.gwt.core.client.JsArrayString)6 RequestBuilder (com.google.gwt.http.client.RequestBuilder)6 Breakpoint (org.rstudio.studio.client.common.debugging.model.Breakpoint)6 Point (org.rstudio.studio.client.workbench.views.plots.model.Point)6 Request (com.google.gwt.http.client.Request)5