Intro
Following in the line of introspection, today we see a simple reflection that will allow us to invoke on an instance of a class method by name.
Intro
Following in the line of introspection, today we see a simple reflection that will allow us to invoke on an instance of a class method by name.
Intro
One of the features that are missed when using GWT is Java's ability to perform introspection on beans. The reason for this limitation is that GWT has no reflection API emulation (java.lang.reflect). In this article we will see how we can implement a kind of introspection in GWT. We will also explore some applications of introspection, since in principle it is not trivial utility.