I have a custom JSF function and I need to create a custom function that has a variable length argument list:
the signature is:
public static boolean myFunction(String... args) {
...
}
how do I write the signature of the function in the taglib file?
for example, if I have just one String argument, this works:
<function>
<function-name>myFunction</function-name>
<function-class>functions.Functions</function-class>
<function-signature>boolean myFunction(java.lang.String)</function-signature>
</function>