Search in sources :

Example 71 with JSONNumber

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

the class RemoteServer method svnShow.

@Override
public void svnShow(int rev, boolean noSizeWarning, ServerRequestCallback<String> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONNumber(rev));
    params.set(1, JSONBoolean.getInstance(noSizeWarning));
    sendRequest(RPC_SCOPE, SVN_SHOW, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONNumber(com.google.gwt.json.client.JSONNumber)

Example 72 with JSONNumber

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

the class RemoteServer method getObjectDefinition.

public void getObjectDefinition(String line, int pos, ServerRequestCallback<ObjectDefinition> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(line));
    params.set(1, new JSONNumber(pos));
    sendRequest(RPC_SCOPE, GET_FUNCTION_DEFINITION, 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 73 with JSONNumber

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

the class RemoteServer method getHelp.

public void getHelp(String topic, String packageName, int options, ServerRequestCallback<HelpInfo> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(topic));
    if (packageName != null)
        params.set(1, new JSONString(packageName));
    else
        params.set(1, JSONNull.getInstance());
    params.set(2, new JSONNumber(options));
    sendRequest(RPC_SCOPE, GET_HELP, 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 74 with JSONNumber

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

the class RemoteServer method setEnvironmentFrame.

@Override
public void setEnvironmentFrame(int frame, ServerRequestCallback<Void> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONNumber(frame));
    sendRequest(RPC_SCOPE, SET_ENVIRONMENT_FRAME, params, requestCallback);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONNumber(com.google.gwt.json.client.JSONNumber)

Example 75 with JSONNumber

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

the class RemoteServer method searchHistoryArchiveByPrefix.

public void searchHistoryArchiveByPrefix(String prefix, long maxEntries, boolean uniqueOnly, ServerRequestCallback<RpcObjectList<HistoryEntry>> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(prefix));
    params.set(1, new JSONNumber(maxEntries));
    params.set(2, JSONBoolean.getInstance(uniqueOnly));
    sendRequest(RPC_SCOPE, SEARCH_HISTORY_ARCHIVE_BY_PREFIX, 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)

Aggregations

JSONNumber (com.google.gwt.json.client.JSONNumber)164 JSONObject (com.google.gwt.json.client.JSONObject)109 JSONString (com.google.gwt.json.client.JSONString)72 JSONArray (com.google.gwt.json.client.JSONArray)69 JavaScriptObject (com.google.gwt.core.client.JavaScriptObject)19 JsonCallbackEvents (cz.metacentrum.perun.webgui.json.JsonCallbackEvents)18 JsonPostClient (cz.metacentrum.perun.webgui.json.JsonPostClient)18 PerunError (cz.metacentrum.perun.webgui.model.PerunError)17 HashMap (java.util.HashMap)4 Map (java.util.Map)4 JSONValue (com.google.gwt.json.client.JSONValue)3 ArrayList (java.util.ArrayList)3 Token (org.rstudio.core.client.Invalidation.Token)3 ServerError (org.rstudio.studio.client.server.ServerError)3 Breakpoint (org.rstudio.studio.client.common.debugging.model.Breakpoint)2 DiffResult (org.rstudio.studio.client.common.vcs.DiffResult)2 StatusAndPath (org.rstudio.studio.client.common.vcs.StatusAndPath)2 Point (org.rstudio.studio.client.workbench.views.plots.model.Point)2 ClickEvent (com.google.gwt.event.dom.client.ClickEvent)1 ClickHandler (com.google.gwt.event.dom.client.ClickHandler)1