Can you define variable argument EL functions in tld files, as in:
| <function-signature>
| java.lang.String concat(java.lang.String...)
| </function-signature>
public static String concat(String... strings) {
| StringBuilder sb = new StringBuilder();
| for (int j = 0; j < strings.length; j++)
| sb.append(strings[j]);
| return sb.toString();
| }
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4026638#4026638
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4026638
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user