function-mapper"

From Documentation
m (correct highlight (via JWB))
 
Line 7: Line 7:
 
Specifies the function mapper that will be used by the EL expressions to resolve unknown functions. The specified class must implement the <javadoc type="interface">org.zkoss.xel.FunctionMapper</javadoc> interface.
 
Specifies the function mapper that will be used by the EL expressions to resolve unknown functions. The specified class must implement the <javadoc type="interface">org.zkoss.xel.FunctionMapper</javadoc> interface.
  
You can specify multiple variable resolvers with multiple <tt>function-mapper</tt> directives. The later declared one that has higher priority.
+
You can specify multiple variable resolvers with multiple <code>function-mapper</code> directives. The later declared one that has higher priority.
  
Notice that the <tt>function-mapper</tt> directives are evaluated before the <tt>init</tt> directives.
+
Notice that the <code>function-mapper</code> directives are evaluated before the <code>init</code> directives.
  
 
== class ==
 
== class ==
Line 15: Line 15:
 
  [Optional]
 
  [Optional]
  
A class name must implement the <javadoc type="interface">org.zkoss.xel.FunctionMapper</javadoc> interface. Unlike the <tt>init</tt> directive, the class name cannot be the class that is defined in zscript codes.
+
A class name must implement the <javadoc type="interface">org.zkoss.xel.FunctionMapper</javadoc> interface. Unlike the <code>init</code> directive, the class name cannot be the class that is defined in zscript codes.
  
 
== arg0, arg1... ==
 
== arg0, arg1... ==
Line 27: Line 27:
 
# Foo()
 
# Foo()
  
If the first signature is found, the arguments with the name and value are passed to the constructor as an instance of <tt>Map</tt>. If the second signature is found, the values of arguments are passed to the constructor as an array of objects. For example,
+
If the first signature is found, the arguments with the name and value are passed to the constructor as an instance of <code>Map</code>. If the second signature is found, the values of arguments are passed to the constructor as an array of objects. For example,
  
 
<source lang="xml">
 
<source lang="xml">
Line 33: Line 33:
 
</source>
 
</source>
  
Prior to ZK 3.6.2, only the second signature is checked if one or more argument is specified, and it assumes <tt>arg0</tt> as the first argument, <tt>arg1</tt> as the second, and so on.
+
Prior to ZK 3.6.2, only the second signature is checked if one or more argument is specified, and it assumes <code>arg0</code> as the first argument, <code>arg1</code> as the second, and so on.
  
 
=Version History=
 
=Version History=

Latest revision as of 13:28, 19 January 2022

Syntax:

<?function-mapper class="..." 
  [arg0="..."] [arg1="..."] [arg2="..."] [arg3="..."]?>

Specifies the function mapper that will be used by the EL expressions to resolve unknown functions. The specified class must implement the FunctionMapper interface.

You can specify multiple variable resolvers with multiple function-mapper directives. The later declared one that has higher priority.

Notice that the function-mapper directives are evaluated before the init directives.

class

[Optional]

A class name must implement the FunctionMapper interface. Unlike the init directive, the class name cannot be the class that is defined in zscript codes.

arg0, arg1...

[Optional]

You could specify any number of arguments. If not specified, the default constructor is assumed. If specified, it will look for the constructor with the signature in the following order:

  1. Foo(Map args)
  2. Foo(Object[] args)
  3. Foo()

If the first signature is found, the arguments with the name and value are passed to the constructor as an instance of Map. If the second signature is found, the values of arguments are passed to the constructor as an array of objects. For example,

<?function-mapper class="foo.Foo" whatever="anything"?>

Prior to ZK 3.6.2, only the second signature is checked if one or more argument is specified, and it assumes arg0 as the first argument, arg1 as the second, and so on.

Version History

Version Date Content
     



Last Update : 2022/01/19

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.