Every time i used the @inheritDoc tag in javadoc, I see the following warning (example):
@inheritDoc used but getCount() does not override or implement any method.
Does anybody know how to avoid that? I'm sure that the methods implement/override another method, because I also set the @override tag, and Eclipse doesn't complain about that.
I had a similair warning concering @link where the reference could'nt be found. This is solved by using absolute identifiers (e.g. android.content.Intent instead of Intent). Is there any similar solution to this problem?