JSMethod
Last updated
Last updated
The JSMethod
scripting wrapper provides tools for managing and interacting with solution model script methods in Servoy. It includes properties and methods that allow customization of script behavior, source code, and visibility in the client interface. ## Functionality
The code
property stores the full source code of a method, including its documentation and declaration. It supports dynamic updates, enabling modifications to method functionality at runtime. The showInMenu
property determines whether a method is displayed in the "Methods" menu of the Servoy Client, allowing developers to manage method visibility.
Several methods enhance interaction with script methods. getArguments
retrieves an array of arguments set for a method, which is useful for analyzing and reconfiguring parameterized actions. getName
provides the name of the method, while getScopeName
returns the associated scope, useful for organizing global or local method interactions. getUUID
returns the universally unique identifier of the method object, aiding in identifying and managing methods programmatically.
These capabilities make JSMethod a versatile component for customizing and extending script-based behavior in Servoy applications.
For details read theMethod section of this documentation
Type | Name | Summary |
---|---|---|
Type | Name | Summary |
---|---|---|
The full source code of this method (including doc and function declaration).
Type String
Sample
Flag that tells if the method appears or not in the "Methods" menu of Servoy Client.
Type Boolean
Sample
Gets the argument array for this method if that is set for the specific action this method is taken from. Will return null by default. This is only for reading, you can't alter the arguments through this array, for that you need to create a new object through solutionModel.wrapMethodWithArguments(..) and assign it again.
Returns: Array Array of the arguments, null if not specified.
Sample
The name of the method.
Returns: String A String holding the name of this method.
Sample
Get scope name
Returns: String
Sample
Returns the UUID of the method object
Returns: UUID
Sample
The full source code of this method (including doc and function declaration).
Flag that tells if the method appears or not in the "Methods" menu of Servoy Client.
Gets the argument array for this method if that is set for the specific action this method is taken from.
The name of the method.
Get scope name
Returns the UUID of the method object