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?
@Override
In the P
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.