posted 19 years ago
Yes, static is not allowed because the Inner class is declared inside the method.
You can view the local-method-inner-class as just another local member of the method, which is not allowed to be declared static, private, public etc...
Alex