Is it possible to add a new formatting style for JavaDoc comments? I could like to have parameters arranged like below
@param<tab>paramName
<tab><tab><tab>description
@return<tab>return description
@throw<tab>ExceptionName
<tab><tab><tab>description
The format for @throw etc are the same. This format makes it easier to see the JavaDoc comments. The alignment style currently used by the IDEA creates a little problem when the name of the variable is long, which takes away spaces from the description. This is even more so a case for Exceptions which usually have very long names.
BTW this seems to be a duplicate of: http://www.jetbrains.net/jira/browse/IDEA-14591