use of com.google.gwt.json.client.JSONNumber in project rstudio by rstudio.
the class RemoteServer method log.
public void log(int logEntryType, String logEntry, ServerRequestCallback<Void> requestCallback) {
JSONArray params = new JSONArray();
params.set(0, new JSONNumber(logEntryType));
params.set(1, new JSONString(logEntry));
sendRequest(LOG_SCOPE, LOG, params, requestCallback);
}
use of com.google.gwt.json.client.JSONNumber in project rstudio by rstudio.
the class RemoteServer method getHistoryItems.
public void getHistoryItems(// inclusive
long startIndex, // exclusive
long endIndex, ServerRequestCallback<RpcObjectList<HistoryEntry>> requestCallback) {
JSONArray params = new JSONArray();
params.set(0, new JSONNumber(startIndex));
params.set(1, new JSONNumber(endIndex));
sendRequest(RPC_SCOPE, GET_HISTORY_ITEMS, params, requestCallback);
}
use of com.google.gwt.json.client.JSONNumber in project rstudio by rstudio.
the class RemoteServer method copyPlotToCocoaPasteboard.
@Override
public void copyPlotToCocoaPasteboard(int width, int height, ServerRequestCallback<Void> requestCallback) {
JSONArray params = new JSONArray();
params.set(0, new JSONNumber(width));
params.set(1, new JSONNumber(height));
sendRequest(RPC_SCOPE, COPY_PLOT_TO_COCOA_PASTEBOARD, params, requestCallback);
}
use of com.google.gwt.json.client.JSONNumber in project rstudio by rstudio.
the class RemoteServer method savePlotAsPdf.
public void savePlotAsPdf(FileSystemItem file, double widthInches, double heightInches, boolean useCairoPdf, boolean overwrite, ServerRequestCallback<Bool> requestCallback) {
JSONArray params = new JSONArray();
params.set(0, new JSONString(file.getPath()));
params.set(1, new JSONNumber(widthInches));
params.set(2, new JSONNumber(heightInches));
params.set(3, JSONBoolean.getInstance(useCairoPdf));
params.set(4, JSONBoolean.getInstance(overwrite));
sendRequest(RPC_SCOPE, SAVE_PLOT_AS_PDF, params, requestCallback);
}
use of com.google.gwt.json.client.JSONNumber in project rstudio by rstudio.
the class RemoteServer method gitApplyPatch.
@Override
public void gitApplyPatch(String patch, PatchMode mode, String sourceEncoding, ServerRequestCallback<Void> requestCallback) {
JSONArray params = new JSONArray();
params.set(0, new JSONString(patch));
params.set(1, new JSONNumber(mode.getValue()));
params.set(2, new JSONString(sourceEncoding));
sendRequest(RPC_SCOPE, GIT_APPLY_PATCH, params, requestCallback);
}
Aggregations