vote up 4 vote down star
2

In Eclipse 3.4.1 using JDK1.6.0_10 how can I activate a warning on a missing @Override annotation on a method that implements an interface method?

In the Preferences window this option:

Java > Compiler > Errors / Warnings > Annotations > Missing '@Override' annotation

works fine for missing annotations on methods that override a superclass method, but it does nothing for interface methods.

flag

78% accept rate
1  
Java 5 and Java 6 have different expectations about @Override annotations on interface implementations. I don't recall how this impacts Eclipse, but I know that it does. – Bill Michell Oct 22 '08 at 9:31
I should have mentioned this. Added the version of Java (6) to the question. – Bno Oct 22 '08 at 9:55

3 Answers

vote up 0 vote down

Maybe I'm missing something but interface methods are already required to be implemented by implementation classes.

The compiler will generate an error if the interface is not completely implemented.

link|flag
Yes, but you still want this. See stackoverflow.com/questions/212614/… – Bno Oct 22 '08 at 9:17
Ah yes, thanks for the pointer. Must have missed that since I'm still at Java 1.5 on Mac OSX :-) – fhe Oct 22 '08 at 10:54
vote up 1 vote down

Belay what I said in the other thread. Apparently it's not a compiler option, but a Java compatibility version issue: if your compatibility version is 5, you won't be able to annotate interface implementation methods. If your compatibility version is 6, then you will be able to.

However I don't think there's a way of actually forcing Eclipse to generate an error if you do not annotate each implemented method. From this page:

Missing '@Override' annotation: When enabled, the compiler will issue an error or a warning whenever it encounters a method overriding another implemented method, and the '@Override' annotation is missing.

link|flag
I use java 6 (edited the question to make this clear. Should have done that before.) – Bno Oct 22 '08 at 9:56
vote up 4 vote down check

It is not possible in Eclipse 3.4.1. It is a known issue. See this bug report page for more information.

link|flag

Your Answer

Get an OpenID
or

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