Hi,
but the 'int[]' is 'Object'
In Java it is found and invoked well:
Object par1 = "x = %s";
Object par2 = new int[]{ 1, 2 };
mNsUtil.log(par1, par2);
BTW I have already tried solution similar to your proposal below but it makes
jexl much more confused if the second parameter is Integer.
This problem is not critical I just would like to clarify it if possible. It is
not easy if variable parameters are involved.
Regards,
Tomas
-----Original Message-----
From: henrib [mailto:[email protected]]
Sent: Friday, August 10, 2012 1:28 PM
To: [email protected]
Subject: Re: [jexl] mathod within namespace not found if parameter is int[]
Hi Tomas,
An 'int[]' is not an 'Object[]', a solution could be:
public static class ScriptUtil {
public void log(Object fmt, Object... arr) {
System.out.println(String.format(fmt.toString(), arr));
}
public void log(Object fmt, int... arr) {
System.out.println(String.format(fmt.toString(), arr));
}
}
Cheers
--
View this message in context:
http://apache-commons.680414.n4.nabble.com/jexl-mathod-within-namespace-not-found-if-parameter-is-int-tp4637888p4637892.html
Sent from the Commons - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]