The @inheritDoc tag should only be used on classes/interfaces which extend or implement another and methods which override a method from a superclass.
class Frobnicator { /** {@inheritDoc} */ public void frobnicate() { // ... } }
Suppress by applying @SuppressWarnings("InheritDoc") to the element being documented.