Search in sources :

Example 66 with JSONString

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

the class RemoteServer method setFollowingUser.

@Override
public void setFollowingUser(String sessionId, ServerRequestCallback<Void> callback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(sessionId));
    sendRequest(RPC_SCOPE, "set_following_user", params, callback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 67 with JSONString

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

the class RemoteServer method svnHistory.

@Override
public void svnHistory(int revision, FileSystemItem path, int skip, int maxentries, String searchText, ServerRequestCallback<RpcObjectList<CommitInfo>> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONNumber(revision));
    params.set(1, path == null ? JSONNull.getInstance() : new JSONString(path.getPath()));
    params.set(2, new JSONNumber(skip));
    params.set(3, new JSONNumber(maxentries));
    params.set(4, new JSONString(StringUtil.notNull(searchText)));
    sendRequest(RPC_SCOPE, SVN_HISTORY, 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 68 with JSONString

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

the class RemoteServer method getRSConnectDeployments.

@Override
public void getRSConnectDeployments(String sourcePath, String outputPath, ServerRequestCallback<JsArray<RSConnectDeploymentRecord>> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(sourcePath));
    params.set(1, new JSONString(outputPath));
    sendRequest(RPC_SCOPE, GET_RSCONNECT_DEPLOYMENTS, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONString(com.google.gwt.json.client.JSONString)

Example 69 with JSONString

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

the class RemoteServer method gitHistory.

@Override
public void gitHistory(String spec, FileSystemItem fileFilter, int skip, int maxentries, String searchText, ServerRequestCallback<RpcObjectList<CommitInfo>> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(spec));
    params.set(1, fileFilter != null ? new JSONString(fileFilter.getPath()) : JSONNull.getInstance());
    params.set(2, new JSONNumber(skip));
    params.set(3, new JSONNumber(maxentries));
    params.set(4, new JSONString(StringUtil.notNull(searchText)));
    sendRequest(RPC_SCOPE, GIT_HISTORY, 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 70 with JSONString

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

the class RemoteServer method showDialogCompleted.

@Override
public void showDialogCompleted(String prompt, boolean ok, ServerRequestCallback<Void> callback) {
    JSONArray params = new JSONArray();
    params.set(0, prompt == null ? JSONNull.getInstance() : new JSONString(prompt));
    params.set(1, JSONBoolean.getInstance(ok));
    sendRequest(RPC_SCOPE, RSTUDIOAPI_SHOW_DIALOG_COMPLETED, params, true, callback);
}
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