use of com.google.gwt.json.client.JSONNumber in project rstudio by rstudio.
the class RemoteServer method getFunctionState.
@Override
public void getFunctionState(String functionName, String fileName, int lineNumber, ServerRequestCallback<FunctionState> requestCallback) {
JSONArray params = new JSONArray();
params.set(0, new JSONString(functionName));
params.set(1, new JSONString(fileName));
params.set(2, new JSONNumber(lineNumber));
sendRequest(RPC_SCOPE, GET_FUNCTION_STATE, params, requestCallback);
}
use of com.google.gwt.json.client.JSONNumber in project rstudio by rstudio.
the class RemoteServer method savePlotAs.
public void savePlotAs(FileSystemItem file, String format, int width, int height, boolean overwrite, ServerRequestCallback<Bool> requestCallback) {
JSONArray params = new JSONArray();
params.set(0, new JSONString(file.getPath()));
params.set(1, new JSONString(format));
params.set(2, new JSONNumber(width));
params.set(3, new JSONNumber(height));
params.set(4, JSONBoolean.getInstance(overwrite));
sendRequest(RPC_SCOPE, SAVE_PLOT_AS, params, requestCallback);
}
use of com.google.gwt.json.client.JSONNumber in project rstudio by rstudio.
the class RemoteServer method executeDebugSource.
public void executeDebugSource(String fileName, ArrayList<Integer> topBreakLines, ArrayList<Integer> debugBreakLines, int step, int mode, ServerRequestCallback<TopLevelLineData> requestCallback) {
JSONArray params = new JSONArray();
params.set(0, new JSONString(fileName));
params.set(1, JSONUtils.toJSONNumberArray(topBreakLines));
params.set(2, JSONUtils.toJSONNumberArray(debugBreakLines));
params.set(3, new JSONNumber(step));
params.set(4, new JSONNumber(mode));
sendRequest(RPC_SCOPE, EXECUTE_DEBUG_SOURCE, params, requestCallback);
}
use of com.google.gwt.json.client.JSONNumber in project rstudio by rstudio.
the class RemoteServer method replayNotebookPlots.
@Override
public void replayNotebookPlots(String docId, String initialChunkId, int pixelWidth, int pixelHeight, ServerRequestCallback<String> requestCallback) {
JSONArray params = new JSONArray();
params.set(0, new JSONString(docId));
params.set(1, new JSONString(initialChunkId));
params.set(2, new JSONNumber(pixelWidth));
params.set(3, new JSONNumber(pixelHeight));
sendRequest(RPC_SCOPE, "replay_notebook_plots", params, requestCallback);
}
use of com.google.gwt.json.client.JSONNumber in project rstudio by rstudio.
the class RemoteServer method findFunctionInSearchPath.
public void findFunctionInSearchPath(String line, int pos, String fromWhere, ServerRequestCallback<SearchPathFunctionDefinition> requestCallback) {
JSONArray params = new JSONArray();
params.set(0, new JSONString(line));
params.set(1, new JSONNumber(pos));
params.set(2, fromWhere != null ? new JSONString(fromWhere) : JSONNull.getInstance());
sendRequest(RPC_SCOPE, FIND_FUNCTION_IN_SEARCH_PATH, params, requestCallback);
}
Aggregations