Search in sources :

Example 86 with JSONArray

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

the class RemoteServer method createRdShell.

public void createRdShell(String name, String type, ServerRequestCallback<RdShellResult> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(name));
    params.set(1, new JSONString(type));
    sendRequest(RPC_SCOPE, CREATE_RD_SHELL, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 87 with JSONArray

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

the class RemoteServer method gitPushBranch.

public void gitPushBranch(String branch, String remote, ServerRequestCallback<ConsoleProcess> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(branch));
    params.set(1, new JSONString(remote));
    sendRequest(RPC_SCOPE, GIT_PUSH_BRANCH, params, new ConsoleProcessCallbackAdapter(requestCallback));
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 88 with JSONArray

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

the class RemoteServer method gitDiffFile.

@Override
public void gitDiffFile(String path, PatchMode mode, int contextLines, boolean noSizeWarning, ServerRequestCallback<DiffResult> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(path));
    params.set(1, new JSONNumber(mode.getValue()));
    params.set(2, new JSONNumber(contextLines));
    params.set(3, JSONBoolean.getInstance(noSizeWarning));
    sendRequest(RPC_SCOPE, GIT_DIFF_FILE, 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 JSONArray

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

the class RemoteServer method svnAdd.

@Override
public void svnAdd(ArrayList<String> paths, ServerRequestCallback<ProcessResult> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, JSONUtils.toJSONStringArray(paths));
    sendRequest(RPC_SCOPE, SVN_ADD, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray)

Example 90 with JSONArray

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

the class RemoteServer method newDocument.

public void newDocument(String filetype, String contents, JsObject properties, ServerRequestCallback<SourceDocument> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(filetype));
    params.set(1, contents != null ? new JSONString(contents) : JSONNull.getInstance());
    params.set(2, new JSONObject(properties));
    sendRequest(RPC_SCOPE, NEW_DOCUMENT, params, requestCallback);
}
Also used : JSONObject(com.google.gwt.json.client.JSONObject) 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