Would anyone know why this happens? I seem to have Java 1.6 set, but I still get the @Override errors as though the system thinks I am on 1.5 which is strange.
Any thoughts on why this happens?
EDIT
The error message is
The method
method(parametertypes)of typeTypemust override a
superclass method
You need to set both the compliance level
and add the appropriate JRE library (right-click the project and select “properties” to get the screen below)
You may need to “clean” the project (Project > Clean…) after completing the above steps.