reflection

  • submit to reddit

Mirror 1.6

Mirror 1.6 is finally out. Mirror is a DSL for dealing with Java Reflection API, making it more pleasant to use. This version comes with some bugfixes and a lot of improvements. Now you can create proxys, instantiate objects without calling a constructor,...

0 replies - 535 views - 03/03/11 by Jonas Abreu in Announcements

About Reflection…

I never thought that will be faced with the need to write code that analyzes itself, but recently it happened. It should be noted that many developers do not use this method under any circumstances ... But it turned out that this code is incredibly flexible....

5 replies - 5495 views - 09/15/10 by Oleg Tsarev in Articles

Avoid Reflection

The Java Reflection API is a very nice feature of the Java language. With the API you can do the magic with Java classes, create an object or call a method on the fly based only on a name. The real Magic! So then, we all should use it all the time, to...

18 replies - 6028 views - 05/14/10 by Lukasz Lenart in News

Java Reflection Library Duckapter 0.7.0 Beta

Java reflection and duck typing library Duckapter 0.7.0 beta release is now available

0 replies - 1562 views - 04/27/10 by Vladimír Oraný in Announcements

Obtaining an Array class with Java reflection

This morning I needed to find and invoke a method reflectively that had an array parameter. It took me a few minutes to figure out how to get the class representing say a char[].

5 replies - 11708 views - 03/12/08 by Alex Miller in News