This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 225482 - Comment indentation support
Summary: Comment indentation support
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.3.1
Hardware: All All
: P3 normal (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-01-29 15:30 UTC by zweistein75
Modified: 2013-01-29 15:30 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description zweistein75 2013-01-29 15:30:27 UTC
It would be very nice to have multi-line @param descriptions (as well as others) 
auto-formatting support for indentation like:

/**
 * Method description.
 *
 * Longer method description which is in multiple lines
 * but there is no need for indentations here.
 *
 * @param param1 description text follows and follows
 *   and follows to more than one line but with short
 *   (2 spaces) indent relative to '@param'
 * @param param2 another description but short
 * @param param3 another very long parameter description
 *   in multiple lines
 *
 * @throws SomeException which has also long description
 *   which follows in more than one line
 */

I keep such style which is shorter and still clear comparing to empty line separating individual parameters. (For now I'm forced to disable comments formatting).