You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "dion gillard (JIRA)" <ji...@apache.org> on 2007/10/26 10:49:51 UTC

[jira] Updated: (JEXL-25) Call method with varargs

     [ https://issues.apache.org/jira/browse/JEXL-25?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

dion gillard updated JEXL-25:
-----------------------------

    Fix Version/s: 2.0

> Call method with varargs
> ------------------------
>
>                 Key: JEXL-25
>                 URL: https://issues.apache.org/jira/browse/JEXL-25
>             Project: Commons JEXL
>          Issue Type: New Feature
>    Affects Versions: 1.1
>         Environment: All
>            Reporter: Marek Lewczuk
>            Priority: Critical
>             Fix For: 2.0
>
>
> Jexl doesn't allow for using method with varargs - method cannot be found and because of that expression returns null. Try following code:
> class TestClass  {
>  public String testVarArgs (Integer... args) {
>   return "Test";
>  }
> }
> String jexlExp = "test.testVarArgs(1,2,3,4,5)";
> Expression e = ExpressionFactory.createExpression(jexlExp);
> JexlContext jc = JexlHelper.createContext();
> jc.getVars().put("test", new TestClass());
> Object o = e.evaluate(jc);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.