How do I programmatically get the field type from a statement inside a method like this :
Foo foo = getSomeFoo();
If it is field, I can know the type of the element.
|
How do I programmatically get the field type from a statement inside a method like this :
If it is field, I can know the type of the element.
| ||||
feedback
|
|
You need to use Eclipse's AST
| ||||
|
feedback
|
|
You can get the class of the If you have a class (or object) and want to programmatically get the return type for a particular method on that class, try this:
| |||||
feedback
|