Search in sources :

Example 76 with JSONString

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

the class RemoteServer method convertFromYAML.

@Override
public void convertFromYAML(String yaml, ServerRequestCallback<RmdYamlData> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(yaml));
    sendRequest(RPC_SCOPE, CONVERT_FROM_YAML, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 77 with JSONString

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

the class RemoteServer method findCppUsages.

public void findCppUsages(String docPath, int line, int column, ServerRequestCallback<Void> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(docPath));
    params.set(1, new JSONNumber(line));
    params.set(2, new JSONNumber(column));
    sendRequest(RPC_SCOPE, "find_cpp_usages", 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 78 with JSONString

use of com.google.gwt.json.client.JSONString 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 79 with JSONString

use of com.google.gwt.json.client.JSONString 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 80 with JSONString

use of com.google.gwt.json.client.JSONString 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)

Aggregations

JSONString (com.google.gwt.json.client.JSONString)277 JSONArray (com.google.gwt.json.client.JSONArray)189 JSONObject (com.google.gwt.json.client.JSONObject)110 JSONNumber (com.google.gwt.json.client.JSONNumber)85 JSONValue (com.google.gwt.json.client.JSONValue)13 HashMap (java.util.HashMap)12 JavaScriptObject (com.google.gwt.core.client.JavaScriptObject)10 Map (java.util.Map)10 JsonCallbackEvents (cz.metacentrum.perun.webgui.json.JsonCallbackEvents)9 PerunError (cz.metacentrum.perun.webgui.model.PerunError)9 Material (org.cesiumjs.cs.scene.Material)9 MaterialOptions (org.cesiumjs.cs.scene.options.MaterialOptions)9 JsonPostClient (cz.metacentrum.perun.webgui.json.JsonPostClient)8 MetaData (com.ait.tooling.nativetools.client.collection.MetaData)7 ArrayList (java.util.ArrayList)7 JsArrayString (com.google.gwt.core.client.JsArrayString)6 RequestBuilder (com.google.gwt.http.client.RequestBuilder)6 Breakpoint (org.rstudio.studio.client.common.debugging.model.Breakpoint)6 Point (org.rstudio.studio.client.workbench.views.plots.model.Point)6 Request (com.google.gwt.http.client.Request)5