I've noticed eclipse.jdt.core.dom variable bindings (IVariableBinding) offer boolean methods to check if they are representing a field, Enum constant or parameter ( isEnumConstant(), isField() and isParameter() ).

How can I know if it represents a local variable? Is it safe to assume that if a IVariableBinding is not one of the former three it will ALWAYS be a local variable?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Answer from the Eclipse Forums (thanks to Deepak Azad): YES, it will always be a local variable, as I suspected.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.