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
*
*********************
* /
source
share