use of com.google.gwt.json.client.JSONString in project rstudio by rstudio.
the class RemoteServer method svnCommit.
@Override
public void svnCommit(ArrayList<String> paths, String message, ServerRequestCallback<ConsoleProcess> requestCallback) {
JSONArray params = new JSONArray();
params.set(0, JSONUtils.toJSONStringArray(paths));
params.set(1, new JSONString(message));
sendRequest(RPC_SCOPE, SVN_COMMIT, params, new ConsoleProcessCallbackAdapter(requestCallback));
}
use of com.google.gwt.json.client.JSONString 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);
}
use of com.google.gwt.json.client.JSONString 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);
}
use of com.google.gwt.json.client.JSONString 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);
}
use of com.google.gwt.json.client.JSONString 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);
}
Aggregations