Details
-
Wish
-
Status: Closed
-
Trivial
-
Resolution: Not A Problem
-
3.1
-
None
Description
I have a static method:
Util.round : public static Object round(Object number, Object places)
I can access this Method within an expression adding the class to the context
jexlContext.set("util", new Util());
And using an expression as : util.round(34.678,2)**
However -within the jexl expression - I don't want to access the method round as :
util.round(34.678,2), instead I want to use the method with my own name:
$$ROUND(34.678,2)**
It is possible?