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.
public interface BeanDaoImpland notpublic class BeanDaoImpl? – Vineet Reynolds Aug 26 '11 at 9:05BeanDaoImplbeing a non-abstract class, you cannot have methods without body... Also the methods need to bepublicIs that intentional to "simplify" the question? – Lukas Eder Aug 26 '11 at 9:13