The issue concerns the @Override annotation and super interfaces.

It's a simple as it gets really the problem is that the @Override annotation is not scoped up to the upper interfaces ...

Here is a bit of simple code to understand the problem :

public abstract interface CrudDao<T>
{
    void update(T bean);

    T get(Object... pk);

    void delete(Object ...pk);

    T create(T bean);
}



public interface BeanDao extends CrudDao<Bean>
{
    Bean moreSpecificGetMethod();
    void moreSpecificUpdateMethod();
}

public class BeanDaoImpl implements BeanDao {

    @Override
    public void update(Bean bean){}

    @Override
    public Bean get(Object... pk){}

    //... Rest of the methods 
}

The compiler says the methods should be created in the BeanDao interface. Why is it not resolving the methods from the super interface ?

Edit : Obviously I intended the impl to be a class with method bodies I'm working and did not reread , funny how 10 people can rush to tell me that it's a case of not using a class and downvote when they haven't read the question at all. And no, in this case @override does not work... I'd like to add though that the compiler does understand that the class implements the super interface and it I change the signature it'll give me an error

Final Edit : Turns out someone changed a master pom and reverted to 1.5 and our integration of maven was overriding the Eclipse editor. Thanks for the answers.

link|improve this question
Are you sure it is public interface BeanDaoImpl and not public class BeanDaoImpl? – Vineet Reynolds Aug 26 '11 at 9:05
Sorry, of course it's not public interface BeanDaoImpl but public class BeanDaoImpl, corrected it. – Gepsens Aug 26 '11 at 9:07
I'm using the latest 1.6 JDK with default compliance settings in eclipse. – Gepsens Aug 26 '11 at 9:08
Now with BeanDaoImpl being a non-abstract class, you cannot have methods without body... Also the methods need to be public Is that intentional to "simplify" the question? – Lukas Eder Aug 26 '11 at 9:13
1  
Same code does not give any compilation error if you make the BeanDaoImpl as abstract and the methods as public..it works fine. – Swagatika Aug 26 '11 at 9:15
show 1 more comment
feedback

4 Answers

up vote 0 down vote accepted

The compiler and the @Override annotation processor are just fine. During compilation with javac (on the command line), the following message is listed for the update method of BeanDaoImpl class:

update(info.example.Bean) in info.example.BeanDaoImpl cannot implement update(T) in info.example.CrudDao; attempting to assign weaker access privileges; was public

and the reason is because the update method in CrudDao is in fact public. According to the Java Language Specification:

Every method declaration in the body of an interface is implicitly public.

And on making the BeanDaoImpl.update method public, the error message goes away. The same holds good for similar error messages from other methods.

There is also the problem with the Eclipse project settings. Just because you are using JDK 1.6 to run Eclipse, you need not automatically have the compiler not complain about @Override annotation processing. You'll need to set the Compiler compliance level of the project to 1.6, in your Java Compiler panel of your project settings. Having a value of 1.5 will result in the Eclipse annotation processor complain about unimplemented methods, when in fact, you those methods have been implemented, but declared in a superinterface, as in your case.

The problem with the compiler compliance level settings is partly due to the initial @Override specification - it was restricted to superclasses alone and did not include interfaces as a supertype. This was fixed in Java 6, but the documentation was not updated. The compiler compliance level of 1.5 get the Eclipse annotation processor to treat @Override annotated methods as those requiring existence in the superclass, and not in a supertype.

link|improve this answer
feedback

public interface BeanDaoImpl implements BeanDao {

@Override
void update(Bean bean);

@Override
Bean get(Object... pk);

//... Rest of the methods  }

Change the implements to extends. Interfaces don't implement other interfaces they extend them.

If you do this, the error you're referring to falls away.

Should be:

public interface BeanDaoImpl extends BeanDao {

@Override
void update(Bean bean);

@Override
Bean get(Object... pk);

//... Rest of the methods  }
link|improve this answer
BeanDaoImpl is a class not interface – Stas Kurilin Aug 26 '11 at 9:13
I edited the mistake early on, I was working and just copy pasted the interface sorry about that. The IMPLEMENTATION is obviously an implementation of the interface and intended as such. Both methods are public and have body. – Gepsens Aug 26 '11 at 10:01
feedback

The @Override Javadoc states.

Indicates that a method declaration is intended to override a method declaration in a superclass. If a method is annotated with this annotation type but does not override a superclass method, compilers are required to generate an error message.

In your case we have an issue:

  • Either it's an interface which you will need to extends (and not implements BeanDao and remove the update/get method), or
  • It's a class (not abstract), which means you implements BeanDao and implement the overridden methods.
link|improve this answer
feedback

The obvious correction to your posted code is this:

public class BeanDaoImpl implements BeanDao {
    @Override
    public void update(Bean bean) {}

    @Override
    public Bean get(Object... pk) {
        return null;
    }
}

Methods need to be public and have a body.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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