Change IntelliJ javadoc template

Is there a way to change the template used by IntelliJ for the Javadoc method?

In particular, I want my javadoc comments to look like this:

/ *********************
 * 
 * Comment here
 *
 ********************** /

However, when I reformat the code, javadoc looks like this:

/ **
 * ******************
 * 
 * Comment here
 *
    *********************
 * /
+5
source share
1 answer

It seems that you do not want the JavaDoc comments to be displayed as they are defined in order to look like IntelliJ does.

You can disable JavaDoc formatting:

  • > a > a > JavaDoc
  • Enable JavaDoc formatting

, JavaDoc. IntelliJ () JavaDoc, .

( JavaDoc), (, /* ****************), IntelliJ .

+6

All Articles