Search in sources :

Example 81 with JSONNumber

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

the class UpdateVo method prepareJSONObject.

/**
	 * Prepares a JSON object.
	 * @return JSONObject - the whole query
	 */
private JSONObject prepareJSONObject() {
    // vo
    JSONObject newVo = new JSONObject();
    newVo.put("id", new JSONNumber(vo.getId()));
    newVo.put("name", new JSONString(vo.getName()));
    newVo.put("shortName", new JSONString(vo.getShortName()));
    // whole JSON query
    JSONObject jsonQuery = new JSONObject();
    jsonQuery.put("vo", newVo);
    return jsonQuery;
}
Also used : JSONObject(com.google.gwt.json.client.JSONObject) JSONNumber(com.google.gwt.json.client.JSONNumber) JSONString(com.google.gwt.json.client.JSONString)

Example 82 with JSONNumber

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

the class EditorPropertiesManager method getDefaultEditorProperties.

/** Returns default settings for editor */
public static Map<String, JSONValue> getDefaultEditorProperties() {
    if (defaultProperties != null) {
        return defaultProperties;
    }
    defaultProperties = new HashMap<>();
    // TextViewOptions (tabs)
    defaultProperties.put(TAB_SIZE.toString(), new JSONNumber(4));
    defaultProperties.put(EXPAND_TAB.toString(), JSONBoolean.getInstance(true));
    // SourceCodeActions (typing)
    defaultProperties.put(AUTO_PAIR_PARENTHESES.toString(), JSONBoolean.getInstance(true));
    defaultProperties.put(AUTO_PAIR_BRACES.toString(), JSONBoolean.getInstance(true));
    defaultProperties.put(AUTO_PAIR_SQUARE_BRACKETS.toString(), JSONBoolean.getInstance(true));
    defaultProperties.put(AUTO_PAIR_ANGLE_BRACKETS.toString(), JSONBoolean.getInstance(true));
    defaultProperties.put(AUTO_PAIR_QUOTATIONS.toString(), JSONBoolean.getInstance(true));
    defaultProperties.put(AUTO_COMPLETE_COMMENTS.toString(), JSONBoolean.getInstance(true));
    defaultProperties.put(SMART_INDENTATION.toString(), JSONBoolean.getInstance(true));
    //white spaces
    defaultProperties.put(SHOW_WHITESPACES.toString(), JSONBoolean.getInstance(false));
    // editor features (rulers)
    defaultProperties.put(SHOW_ANNOTATION_RULER.toString(), JSONBoolean.getInstance(true));
    defaultProperties.put(SHOW_LINE_NUMBER_RULER.toString(), JSONBoolean.getInstance(true));
    defaultProperties.put(SHOW_FOLDING_RULER.toString(), JSONBoolean.getInstance(true));
    defaultProperties.put(SHOW_OVERVIEW_RULER.toString(), JSONBoolean.getInstance(true));
    defaultProperties.put(SHOW_ZOOM_RULER.toString(), JSONBoolean.getInstance(true));
    // language tools
    defaultProperties.put(SHOW_OCCURRENCES.toString(), JSONBoolean.getInstance(true));
    defaultProperties.put(SHOW_CONTENT_ASSIST_AUTOMATICALLY.toString(), JSONBoolean.getInstance(true));
    return defaultProperties;
}
Also used : JSONNumber(com.google.gwt.json.client.JSONNumber)

Example 83 with JSONNumber

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

the class RemoteServer method svnHistoryCount.

@Override
public void svnHistoryCount(int revision, FileSystemItem path, String searchText, ServerRequestCallback<CommitCount> 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 JSONString(StringUtil.notNull(searchText)));
    sendRequest(RPC_SCOPE, SVN_HISTORY_COUNT, 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 84 with JSONNumber

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

the class RemoteServer method searchCode.

public void searchCode(String term, int maxResults, ServerRequestCallback<CodeSearchResults> requestCallback) {
    JSONArray params = new JSONArray();
    params.set(0, new JSONString(term));
    params.set(1, new JSONNumber(maxResults));
    sendRequest(RPC_SCOPE, SEARCH_CODE, 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 85 with JSONNumber

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

the class RemoteServer method setArrayNumber.

private void setArrayNumber(JSONArray params, int index, List<Integer> what) {
    JSONArray array = new JSONArray();
    for (int i = 0; i < what.size(); i++) array.set(i, new JSONNumber(what.get(i)));
    params.set(index, array);
}
Also used : JSONArray(com.google.gwt.json.client.JSONArray) JSONNumber(com.google.gwt.json.client.JSONNumber) Breakpoint(org.rstudio.studio.client.common.debugging.model.Breakpoint) Point(org.rstudio.studio.client.workbench.views.plots.model.Point)

Aggregations

JSONNumber (com.google.gwt.json.client.JSONNumber)163 JSONObject (com.google.gwt.json.client.JSONObject)109 JSONString (com.google.gwt.json.client.JSONString)72 JSONArray (com.google.gwt.json.client.JSONArray)68 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