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.

Following code giving an error near the public void control() {.

EClipse giives a tip to remove the @Override annotation also. I went throudh the docs.oracle and found that If a method marked with @Override fails to correctly override a method in one of its superclasses, the compiler generates an error.

I don't understand what is meaning of "fails to correctly override"?

public class PersistenceFlowController implements controllers.FlowController {
   @Override
   public void control() {
      // Do some works here
   }
}


package controllers;
public interface FlowController {   
   void control();  
}
share|improve this question
Specify the exact error message, in a shortened form, in the title, and the long form in the post. Also search for such error message. – user166390 Mar 14 '12 at 4:55
Ah!. I just put it as previous to check for the matching quesions. and forgot to edit before posting it. My Bad pst! Thanx for mentioning – oneliner Mar 14 '12 at 5:02

1 Answer

up vote 8 down vote accepted

In JDK 1.5, @Override could be applied only to methods from a parent class. In JDK 1.6 and up, it can be used for interface methods, too. My guess is that you have Eclipse set for JDK 1.5 compiler compliance. You can check or change this in the "Java Compiler" tab of the project properties dialog.

share|improve this answer
Yep. Your guess is perfectly correct Emest. Thanx very much. – oneliner Mar 14 '12 at 4:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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