Details
-
New Feature
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.0
-
None
Description
Suppose we have a plain java class which implements a "call" method
public class Foo { public Object call(Object bar) { return null; } }
In JEXL we could resolve a function() operator on this class directly, in other words use this class as a closure and invoke a "call" method.
x = new ("Foo"); return x(3);