I have two classes and two interfaces. InterfaceA
package ch.sukha.testmachine.client;
interface InterfaceA {
/**
* Foo.
*/
void foo();
}
is the super interface of InterfaceB.
package ch.sukha.testmachine.client;
public interface InterfaceB extends InterfaceA {
/**
* Bar.
*/
void bar();
}
Likewise, class A is the super class of
package ch.sukha.testmachine.client;
class A implements InterfaceA {
@Override
public void foo() {
}
}
class B.
package ch.sukha.testmachine.client;
public class B extends A implements InterfaceB {
@Override
public void bar() {
}
}
In the generated JavaDoc, method foo appears twice.

@Overridein front of the interface methods? you should use this anyway for a better code style. – Simulant Feb 19 at 15:43@Override. – Peter Feb 19 at 16:02