Reputation: 27632
Can I convert a Class
attribute to appropriate Field
class?
For example consider the following code:
class Test {
Integer A;
void init() {
Field fA = ???;
}
}
I want fA
to describe Test.A
.
Upvotes: 0
Views: 321