Try the {@inheritDoc} attribute. This should do what you need.
You can also add additional help comments after or before this tag. Here is an example of Android source code:
/** * {@inheritDoc} * * Note that if you're calling on a local binder, this always returns true * because your process is alive if you're calling it. */ public boolean isBinderAlive() { return true; }
source share