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

Summary: Automatically update Javadoc @author when the class changes
Product: java Reporter: pekarna <pekarna>
Component: EditorAssignee: Dusan Balek <dbalek>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.1   
Hardware: PC   
OS: Linux   
Issue Type: ENHANCEMENT Exception Reporter:

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.