Search in sources :

Example 96 with JSONArray

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

the class RemoteServer method svnShow.

@Override
public void svnShow(int rev, boolean noSizeWarning, ServerRequestCallback<String> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONNumber(rev));
    params.set(1, JSONBoolean.getInstance(noSizeWarning));
    sendRequest(RPC_SCOPE, SVN_SHOW, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONNumber(com.google.gwt.json.client.JSONNumber)

Example 97 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, JavaScriptObject param, ServerRequestCallback<T> requestCallback) {
    JSONArray params = new JSONArray();
    // pass JSONNull if the object is null
    params.set(0, param != null ? new JSONObject(param) : JSONNull.getInstance());
    sendRequest(scope, method, params, requestCallback);
}
Also used : JSONObject(com.google.gwt.json.client.JSONObject) JSONArray(com.google.gwt.json.client.JSONArray)

Example 98 with JSONArray

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

the class RemoteServer method getDplyrJoinCompletions.

public void getDplyrJoinCompletions(String token, String leftDataName, String rightDataName, String verb, String cursorPos, ServerRequestCallback<Completions> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(token));
    params.set(1, new JSONString(leftDataName));
    params.set(2, new JSONString(rightDataName));
    params.set(3, new JSONString(verb));
    params.set(4, new JSONString(cursorPos));
    sendRequest(RPC_SCOPE, GET_DPLYR_JOIN_COMPLETIONS, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 99 with JSONArray

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

the class RemoteServer method beginFind.

@Override
public void beginFind(String searchString, boolean regex, boolean ignoreCase, FileSystemItem directory, JsArrayString filePatterns, ServerRequestCallback<String> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(searchString));
    params.set(1, JSONBoolean.getInstance(regex));
    params.set(2, JSONBoolean.getInstance(ignoreCase));
    params.set(3, new JSONString(directory == null ? "" : directory.getPath()));
    params.set(4, new JSONArray(filePatterns));
    sendRequest(RPC_SCOPE, BEGIN_FIND, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 100 with JSONArray

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

the class RemoteServer method svnResolve.

@Override
public void svnResolve(String accept, ArrayList<String> paths, ServerRequestCallback<ProcessResult> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(accept));
    params.set(1, JSONUtils.toJSONStringArray(paths));
    sendRequest(RPC_SCOPE, SVN_RESOLVE, 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