We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.client.metadata.
Class JsniInvoker
- java.lang.Object
-
- com.vaadin.client.metadata.JsniInvoker
-
-
Constructor Summary
Constructors Constructor Description JsniInvoker()
-
Method Summary
All Methods Modifier and Type Method Description Object
invoke(Object target, Object... params)
protected abstract Object
jsniInvoke(Object target, JsArrayObject<Object> params)
Abstract method that will be generated to contain JSNI for invoking the actual method.
-
-
-
Method Detail
-
jsniInvoke
protected abstract Object jsniInvoke(Object target, JsArrayObject<Object> params)
Abstract method that will be generated to contain JSNI for invoking the actual method.
Parameters:
target
- the object upon which to invoke the methodparams
- a js array with arguments to pass to the methodReturns:
the value returned by the invoked method, or
null
if the target method return type isvoid
.
-
-