On Wed, 17 Jun 2015 23:02:44 +0200, "Markus KARG" <markus@headcrashing.eu>
wrote:
> I think you not even need reflection, but could simply rely on proxies.
> Should be faster and do the job faster.
>
http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/reflect/Proxy.html
> :-)
>
> An official Java SE standard since v1.3, BTW, to prevent further
> discussions about versions. ;-)
Proxies use reflection (which is why they are part of the
java.lang.reflect package.
Mark