Search in sources :

Example 36 with JSONArray

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

the class RemoteServer method isPackageLoaded.

public void isPackageLoaded(String packageName, String libName, ServerRequestCallback<Boolean> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(packageName));
    params.set(1, new JSONString(libName));
    sendRequest(RPC_SCOPE, IS_PACKAGE_LOADED, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 37 with JSONArray

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

the class RemoteServer method getCustomParameterHelp.

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

Example 38 with JSONArray

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

the class RemoteServer method assembleDataImport.

@Override
public void assembleDataImport(DataImportOptions dataImportOptions, ServerRequestCallback<DataImportAssembleResponse> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONObject(dataImportOptions));
    sendRequest(RPC_SCOPE, ASSEMBLE_DATA_IMPORT, params, requestCallback);
}
Also used : JSONObject(com.google.gwt.json.client.JSONObject) JSONArray(com.google.gwt.json.client.JSONArray)

Example 39 with JSONArray

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

the class RemoteServer method getPendingActions.

@Override
public void getPendingActions(String action, String dir, ServerRequestCallback<JsArray<PackratPackageAction>> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(action));
    params.set(1, new JSONString(dir));
    sendRequest(RPC_SCOPE, GET_PENDING_ACTIONS, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 40 with JSONArray

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

the class RemoteServer method applyInverseConcordance.

@Override
public void applyInverseConcordance(SourceLocation sourceLocation, ServerRequestCallback<SourceLocation> callback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONObject(sourceLocation));
    sendRequest(RPC_SCOPE, APPLY_INVERSE_CONCORDANCE, params, callback);
}
Also used : JSONObject(com.google.gwt.json.client.JSONObject) JSONArray(com.google.gwt.json.client.JSONArray)

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