Search in sources :

Example 51 with JSONArray

use of com.google.gwt.json.client.JSONArray 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 52 with JSONArray

use of com.google.gwt.json.client.JSONArray 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 53 with JSONArray

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

the class RemoteServer method sendRequest.

private <T> void sendRequest(String scope, String method, boolean param, ServerRequestCallback<T> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, JSONBoolean.getInstance(param));
    sendRequest(scope, method, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray)

Example 54 with JSONArray

use of com.google.gwt.json.client.JSONArray 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 55 with JSONArray

use of com.google.gwt.json.client.JSONArray 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)

Aggregations

JSONArray (com.google.gwt.json.client.JSONArray)261 JSONString (com.google.gwt.json.client.JSONString)182 JSONNumber (com.google.gwt.json.client.JSONNumber)69 JSONObject (com.google.gwt.json.client.JSONObject)62 JSONValue (com.google.gwt.json.client.JSONValue)10 Breakpoint (org.rstudio.studio.client.common.debugging.model.Breakpoint)8 Point (org.rstudio.studio.client.workbench.views.plots.model.Point)8 ArrayList (java.util.ArrayList)6 HashMap (java.util.HashMap)6 Date (java.util.Date)5 Map (java.util.Map)5 JavaScriptObject (com.google.gwt.core.client.JavaScriptObject)2 JsArrayString (com.google.gwt.core.client.JsArrayString)2 JSONBoolean (com.google.gwt.json.client.JSONBoolean)2 GwtTestTest (com.googlecode.gwt.test.GwtTestTest)2 ContactOrganisation (com.googlecode.gwtphonegap.client.contacts.ContactOrganisation)2 Test (org.junit.Test)2 EntryPoint (com.google.gwt.core.client.EntryPoint)1 Style (com.google.gwt.dom.client.Style)1 ClickEvent (com.google.gwt.event.dom.client.ClickEvent)1