Search in sources :

Example 81 with JSONArray

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

the class RemoteServer method plotsCreateRPubsHtml.

@Override
public void plotsCreateRPubsHtml(String title, String comment, int width, int height, ServerRequestCallback<String> callback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(title));
    params.set(1, new JSONString(comment));
    params.set(2, new JSONNumber(width));
    params.set(3, new JSONNumber(height));
    sendRequest(RPC_SCOPE, "plots_create_rpubs_html", params, callback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONNumber(com.google.gwt.json.client.JSONNumber) JSONString(com.google.gwt.json.client.JSONString)

Example 82 with JSONArray

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

the class RemoteServer method getLintResults.

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

Example 83 with JSONArray

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

the class RemoteServer method copyPlotToClipboardMetafile.

public void copyPlotToClipboardMetafile(int width, int height, ServerRequestCallback<Void> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONNumber(width));
    params.set(1, new JSONNumber(height));
    sendRequest(RPC_SCOPE, COPY_PLOT_TO_CLIPBOARD_METAFILE, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONNumber(com.google.gwt.json.client.JSONNumber)

Example 84 with JSONArray

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

the class RemoteServer method setFunctionBreakpoints.

@Override
public void setFunctionBreakpoints(String functionName, String fileName, String packageName, ArrayList<String> steps, ServerRequestCallback<Void> requestCallback) {
    JSONArray breakSteps = new JSONArray();
    for (int idx = 0; idx < steps.size(); idx++) {
        breakSteps.set(idx, new JSONString(steps.get(idx)));
    }
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(functionName));
    params.set(1, new JSONString(fileName));
    params.set(2, new JSONString(packageName));
    params.set(3, breakSteps);
    sendRequest(RPC_SCOPE, SET_FUNCTION_BREAKPOINTS, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) Breakpoint(org.rstudio.studio.client.common.debugging.model.Breakpoint) Point(org.rstudio.studio.client.workbench.views.plots.model.Point) JSONString(com.google.gwt.json.client.JSONString)

Example 85 with JSONArray

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

the class RemoteServer method validateServerUrl.

@Override
public void validateServerUrl(String url, ServerRequestCallback<RSConnectServerInfo> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(url));
    sendRequest(RPC_SCOPE, VALIDATE_SERVER_URL, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) 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