Javadoc: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 10: Line 10:
  */
  */
</syntaxhighlight>
</syntaxhighlight>
If you define javadocs in the subclass they will replace the inherited javadocs, but you can use {@inheritDoc} to include the respective superclass javadoc comments in the subclass javadocs.

Revision as of 16:44, 11 October 2018

Internal

Link to External Content

/**
 * For more details see {@linktourl https://example.com}
 */


If you define javadocs in the subclass they will replace the inherited javadocs, but you can use {@inheritDoc} to include the respective superclass javadoc comments in the subclass javadocs.