Friday 17 May 2013

Change Default Author Name for JavaDocs in Eclipse

Change Default Author Name for JavaDocs in Eclipse

posted 29 Dec 2010 03:46 by Sanjeev Kumar   [ updated 11 Nov 2011 06:17 ]
The auto generated Java docs at the class level picks the user name from the system user. This could result in weird author names in your code files as in an organization usernames are usually as per organizational naming conventions. For example my user name that I use to login is something like SK0012345 and you will agree that it wouldn't look good as an author name in a Java file and might not make any sense to most other viewers of the code. 

/**
 * Test default author in JavaDocs
 * @author SK0012345
 */
public class TestClass {
}

Here is a quick way to change the default author name in your Eclipse projects. Simply edit your eclipse.ini file found in the root directory where you placed Eclipse. I have Eclipse at C:\devtools\development\eclipse, so my path would be C:\devtools\development\eclipse\eclipse.ini. Once editing this file add the following line and save.

-Duser.name=Sanjeev Kumar

After saving restart Eclipse and when you do a JavaDoc comment and use the author attribute by typing @author and pressing enter on the autocomplete you will see something like this:

/**
 * Test default author in JavaDocs
 * @author Sanjeev Kumar
 */
public class TestClass {
}
 
 
Reference
http://www.javagyan.com/useful-tips/changedefaultauthornameforjavadocsineclipse

No comments:

Post a Comment