Uses of Interface
elemental.json.JsonArray
-
Packages that use JsonArray Package Description com.vaadin.client com.vaadin.client.communication com.vaadin.server.communication com.vaadin.shared.data com.vaadin.ui elemental.json elemental.json.impl -
-
Uses of JsonArray in com.vaadin.client
Methods in com.vaadin.client with parameters of type JsonArray Modifier and Type Method Description Object[]
JavaScriptConnectorHelper. decodeRpcParameters(JsonArray parametersJson)
void
JavaScriptConnectorHelper. invokeJsRpc(MethodInvocation invocation, JsonArray parametersJson)
-
Uses of JsonArray in com.vaadin.client.communication
Methods in com.vaadin.client.communication that return JsonArray Modifier and Type Method Description JsonArray
ServerRpcQueue. toJson()
Returns the current invocations as JSONMethods in com.vaadin.client.communication with parameters of type JsonArray Modifier and Type Method Description MethodInvocation
RpcManager. parseAndApplyInvocation(JsonArray rpcCall, ApplicationConnection connection)
protected void
MessageSender. send(JsonArray reqInvocations, JsonObject extraJson)
Makes an UIDL request to the server. -
Uses of JsonArray in com.vaadin.server.communication
Methods in com.vaadin.server.communication that return JsonArray Modifier and Type Method Description JsonArray
ServerRpcHandler.RpcRequest. getRpcInvocationsData()
Gets the data to recreate the RPC as requested by the client side.Methods in com.vaadin.server.communication with parameters of type JsonArray Modifier and Type Method Description protected void
ServerRpcHandler. handleInvocations(UI ui, int lastSyncIdSeenByClient, JsonArray invocationsData)
Processes invocations data received from the client. -
Uses of JsonArray in com.vaadin.shared.data
Methods in com.vaadin.shared.data with parameters of type JsonArray Modifier and Type Method Description void
DataRequestRpc. dropRows(JsonArray rowKeys)
Informs the server that items have been dropped from the client cache.void
DataProviderRpc. setRowData(int firstRowIndex, JsonArray rowDataJson)
Sends updated row data to a client.void
DataProviderRpc. updateRowData(JsonArray rowArray)
Informs the client that rows have been updated. -
Uses of JsonArray in com.vaadin.ui
Methods in com.vaadin.ui with parameters of type JsonArray Modifier and Type Method Description void
JavaScript.JavaScriptCallbackRpc. call(String name, JsonArray arguments)
void
JavaScriptFunction. call(JsonArray arguments)
Invoked whenever the corresponding JavaScript function is called in the browser. -
Uses of JsonArray in elemental.json
Methods in elemental.json that return JsonArray Modifier and Type Method Description static JsonArray
Json. createArray()
JsonArray
JsonFactory. createArray()
Create an empty JsonArray.JsonArray
JsonArray. getArray(int index)
Return the ith element of the array (uncoerced) as a JsonArray.JsonArray
JsonObject. getArray(String key)
Return the element (uncoerced) as a JsonArray. -
Uses of JsonArray in elemental.json.impl
Classes in elemental.json.impl that implement JsonArray Modifier and Type Class Description class
JreJsonArray
Server-side implementation of JsonArray.Methods in elemental.json.impl that return JsonArray Modifier and Type Method Description JsonArray
JreJsonFactory. createArray()
JsonArray
JreJsonArray. getArray(int index)
JsonArray
JreJsonObject. getArray(String key)
-