Package com.orchestranetworks.ui.base
Class JsFunctionCall
- java.lang.Object
-
- com.orchestranetworks.ui.base.JsFunctionCall
-
public final class JsFunctionCall extends Object
Instances of this class specify a call to a JavaScript function to be performed on the client side.- Since:
- 5.3.0
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getArgument()
String
getFunctionName()
static JsFunctionCall
on(String aFunctionName)
Sets the name of the JavaScript function to be called.static JsFunctionCall
on(String aFunctionName, String anArgument)
Sets the name of the JavaScript function to be called and the second argument that will be passed to this method considering that the first parameter is the field value.
-
-
-
Method Detail
-
on
public static JsFunctionCall on(String aFunctionName)
Sets the name of the JavaScript function to be called.
-
on
public static JsFunctionCall on(String aFunctionName, String anArgument)
Sets the name of the JavaScript function to be called and the second argument that will be passed to this method considering that the first parameter is the field value.
-
getFunctionName
public String getFunctionName()
-
getArgument
public String getArgument()
-
-