I'm overriding some classes in eclipse android java project in my local private inner classes and although I see projects where this is handled fine in my particular project settings its complaining Must override a method which is exactly what it is doing???? Thanks
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
[My guess, before code of the op] In Java 6, you can use @Override to annotate a method that implement an interface. In Java 5 you are not allow to do that. |
|||
|
You can't override a private method. Are the supertype's methods private, or just the class itself? |
|||
|
|