about method local inner classes the question was:
Which of the following statements are true of a method local inner class?
the correct answer given was
1) It has access to all members of its enclosing class 2) It can only access final variables of its enclosing method
I think that answer 1 is false. If the method (where the inner class is in) is static, the inner class has no access to non-static members of the enclosing class. So we can't say it has access to all members.