I have a class and i want to find all of it's public variables (not functions). how can i do so? thanks!
|
feedback
|
returns an array of all public variables of the class.
The The | |||||
feedback
|
|
see this Excellent java reflection tutorial by ibm to get all the constructor , variables and even methods. | |||
|
feedback
|
|
You should be able to do this using Reflection API. | |||
|
feedback
|
|
| |||||
feedback
|