Eclipse - Imported A Project And Eclipse Is Giving Me Wrong @override Method Annotation Errors
I imported an Android project and it has a lot of @override method annotations, which Eclipse is complaining about (although the project has worked before and it should not be comp
Solution 1:
Are the overrides on interface methods or superclass methods? Interface methods can only be marked with this annotation as of Java 6. What is the compiler compliance level set to for your project? What about for Eclipse in general? If it is not higher than 1.5, you will see such errors. Android officially supports compiler versions 1.5 and 1.6, last I checked.
(Also see the several related questions over there on the right for more details)
Post a Comment for "Eclipse - Imported A Project And Eclipse Is Giving Me Wrong @override Method Annotation Errors"