Instead of hardcoding the default @author template I would like Eclipse to use user's real name taken from account information (in Linux - but Windows solution is also welcome). Entering it somewhere into Eclipse configuration would be acceptable, too, alas I can't find the right place.
|
|
http://morlhon.net/blog/2005/09/07/eclipse-username/ It seems that your best bet is to redefine the java user.name variable either at your command line, or using the eclipse.ini file in your eclipse install root directory. This seems to work fine for me:
|
|||||||||||||||||||
|
|
Open Eclipse, go to Window -> Preferences -> Java -> Code Style -> Code Templates -> Comments -> Types and then press the 'Edit' button. There you can change your name in the generated comment form @Author ${user} to @Author Rajish. |
|||||||||||||||||
|
|
dovescrywolf gave tip as a comment on article linked by Davide Inglima It was was very useful for me on MacOS.
|
||||
|
|
|
Rather than changing
in eclipse.ini which is present in your eclipse folder. |
|||||||||||
|
|
just other option. goto PREFERENCES >> JAVA >> EDITOR >> TEMPLATES, Select @author and change the variable ${user}. |
|||
|
|