Re: JDK 8 - Lambda - Reflection issues

2014-03-12 Thread Remi Forax
On 03/12/2014 07:12 PM, Pavel Bucek wrote: Hello all, I have an issue with getting generic parameter when using lambdas. I can get the type when using anonymous classes. code sample will be more descriptive than anything I would say, so.. : public class Main { public static interface A

JDK 8 - Lambda - Reflection issues

2014-03-12 Thread Pavel Bucek
Hello all, I have an issue with getting generic parameter when using lambdas. I can get the type when using anonymous classes. code sample will be more descriptive than anything I would say, so.. : public class Main { public static interface A { public void method(T param); }