Setting project specific settings in Eclipse

In Eclipse you can use 2 type of workspace settings.
One is general settings, you can change them by visiting Window->Preferences:

general

But sometimes you need to specify some project’s settings. For this you can use project specific settings. Continue reading Setting project specific settings in Eclipse

  • Share/Bookmark

Changing author name in Eclipse IDE

It is very easy to change author name in Eclipse IDE.
Steps:

open eclipse.ini file in the eclipse directory
add the following line after -vmargs line -Duser.name=your name

Example of my eclipse.ini:


-vmargs
-Duser.name=FaYnaSoft Labs

Also you can change it from here:
Preferences -> Java -> Code Style -> Code Templates -> Comments ->Types and change $(user) to your desired author name.
Example:

@author $(user) -> @author . . . → Read More: Changing author name in Eclipse IDE

  • Share/Bookmark