I implemented my own method defined in an interface. However when I try to add Javadoc to this method Eclipse gave me a comment like this:
/* (non-Javadoc)
* @s
The idea of adding a non-javadoc comment here is that in the generated javadoc the comment from the inherited method will be copied, which might be enough - and better than if you had an empty /** */
comment. At the same time, you can use the link in the source code to look up the method. And as said by Ken, you can always change it.
If you want to include the interface's documentation, use {@inheritDoc}
in your comment.