Auto-generate a default /** */ javadoc comment

Answered

Is it possible to auto-generate a default /** */ javadoc comment when creating a new method (@inheritDoc) in IntelliJ?

Any tips? Is there a setting we can use?.

0
1 comment

You can configure live template for that https://www.jetbrains.com/help/idea/using-live-templates.html

You can create a new template, so entering e.g. "inhDoc" will replace this phrase via

/** */
@inheritDoc

0

Please sign in to leave a comment.