Search in sources :

Example 11 with JSONArray

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

the class RemoteServer method listAllFiles.

public void listAllFiles(String path, String pattern, ServerRequestCallback<JsArrayString> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(path));
    params.set(1, new JSONString(pattern));
    sendRequest(RPC_SCOPE, LIST_ALL_FILES, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 12 with JSONArray

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

the class RemoteServer method getCustomHelp.

public void getCustomHelp(String helpHandler, String topic, String source, ServerRequestCallback<HelpInfo.Custom> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(helpHandler));
    params.set(1, new JSONString(topic));
    params.set(2, new JSONString(source));
    sendRequest(RPC_SCOPE, GET_CUSTOM_HELP, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 13 with JSONArray

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

the class RemoteServer method launchEmbeddedShinyConnectionUI.

@Override
public void launchEmbeddedShinyConnectionUI(String packageName, String connectionName, ServerRequestCallback<RResult<Void>> callback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(packageName));
    params.set(1, new JSONString(connectionName));
    sendRequest(RPC_SCOPE, LAUNCH_EMBEDDED_SHINY_CONNECTION_UI, params, callback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 14 with JSONArray

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

the class RemoteServer method createShinyApp.

public void createShinyApp(String appName, String appType, String appDir, ServerRequestCallback<JsArrayString> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(appName));
    params.set(1, new JSONString(appType));
    params.set(2, new JSONString(appDir));
    sendRequest(RPC_SCOPE, CREATE_SHINY_APP, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 15 with JSONArray

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

the class RemoteServer method getArgs.

public void getArgs(String name, String source, String helpHandler, ServerRequestCallback<String> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(name));
    params.set(1, new JSONString(source));
    params.set(2, new JSONString(StringUtil.notNull(helpHandler)));
    sendRequest(RPC_SCOPE, GET_ARGS, 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)260 JSONString (com.google.gwt.json.client.JSONString)182 JSONNumber (com.google.gwt.json.client.JSONNumber)68 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