diff options
author | Taras Hupalo <taras.hupalo@gmail.com> | 2014-08-12 15:28:41 +0300 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-08-26 09:51:15 +0000 |
commit | f2551a9fc03636deb5fcd3f30c761dca946c8341 (patch) | |
tree | b59bc2c5ea1f7471dec4ef59826614b4f6d0adbf /server/src/com/vaadin/ui/JavaScriptFunction.java | |
parent | c8d58261954de18ef67eaf9043bd93360202cf06 (diff) | |
download | vaadin-framework-f2551a9fc03636deb5fcd3f30c761dca946c8341.tar.gz vaadin-framework-f2551a9fc03636deb5fcd3f30c761dca946c8341.zip |
replaced all org.json.* usages with elemental.json.* (#8942)
Change-Id: I4809fbbdb48f3e36c8e1da8552ff3fa734714105
Diffstat (limited to 'server/src/com/vaadin/ui/JavaScriptFunction.java')
-rw-r--r-- | server/src/com/vaadin/ui/JavaScriptFunction.java | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/server/src/com/vaadin/ui/JavaScriptFunction.java b/server/src/com/vaadin/ui/JavaScriptFunction.java index 2c026abd1a..c006a36d58 100644 --- a/server/src/com/vaadin/ui/JavaScriptFunction.java +++ b/server/src/com/vaadin/ui/JavaScriptFunction.java @@ -18,14 +18,12 @@ package com.vaadin.ui; import java.io.Serializable; -import org.json.JSONArray; -import org.json.JSONException; - import com.vaadin.server.AbstractJavaScriptExtension; +import elemental.json.JsonArray; /** * Defines a method that is called by a client-side JavaScript function. When - * the corresponding JavaScript function is called, the {@link #call(JSONArray)} + * the corresponding JavaScript function is called, the {@link #call(JsonArray)} * method is invoked. * * @see JavaScript#addFunction(String, JavaScriptCallback) @@ -46,8 +44,6 @@ public interface JavaScriptFunction extends Serializable { * @param arguments * an array with JSON representations of the arguments with which * the JavaScript function was called. - * @throws JSONException - * if the arguments can not be interpreted */ - public void call(JSONArray arguments) throws JSONException; + public void call(JsonArray arguments); } |