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 250882 - Automatically update Javadoc @author when the class changes
Summary: Automatically update Javadoc @author when the class changes
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Editor (show other bugs)
Version: 8.1
Hardware: PC Linux
: P3 normal (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-03-04 01:54 UTC by pekarna
Modified: 2015-03-04 12:33 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 pekarna 2015-03-04 01:54:04 UTC
It would be nice to have an option to add @author tag to the javadoc of a class when the class is changed.

I.e.:

/**
 * Blah.
 * @author Someone Else
 */


After first edit anywhere in the file (possibly ignoring whitespace) and save, this javadoc comment would turn into

/**
 * Blah.
 * @author Someone Else
 * @author Iwannabe Famous, II.
 */

Thanks for considering.