jOOQ / jOOR

jOOR - Fluent Reflection in Java jOOR is a very simple fluent API that gives access to your Java Class structures in a more intuitive way. The JDK's reflection APIs are hard and verbose to use. Other languages have much simpler constructs to access type meta information at runtime. Let us make Java reflection better.
http://www.jooq.org/products
Apache License 2.0
2.8k stars 377 forks source link

Add Reflect.as(Class<P>, Class<?>...) overload #83

Closed lukaseder closed 5 years ago

lukaseder commented 5 years ago

Proxies can implement several interfaces. The current Reflect.as() method supports only one - the one producing the generic P type. But we should also offer an overload that takes an optional varargs parameter containing the additionally implemented interfaces.

lukaseder commented 5 years ago

Default method calls on proxies with multiple interfaces will be supported separately: https://github.com/jOOQ/jOOR/issues/84