Getting method's fields

Hello JGuys...

Using the method Class.getDeclaredFields it's possible to acquire all fields declared in a given class; but the fields declared in the methods aren't acquired.

So, is there a way to acquire the fields declared in a method scope ?

Thanks in advance.

-- Lelio.

[313 byte] By [leliojr] at [2007-9-26 1:49:18]
# 1
There are no fields declared inside methods. Methods have local variables. If that's what you mean, there isn't any way to do it.
schapel at 2007-6-29 2:54:56 > top of Java-index,Archived Forums,Java Programming...