I spent quite a bit of time modifying my Java code style settings to be the way I like.
For example, go to Windows -> Preferences -> Java -> Code Style -> Clean Up / Formatter / Code Templates.
I’ve set eclipse to use white space instead of tab chars, customized the heading on the top of java files, and a whole bunch of other stuff.
Now I’m working on a different computer and had to install a new copy of Eclipse Helios.
Is there a file or set of files I can reuse so I don’t have to keep setting this up everytime?
If you haven’t set “project specific settings”, it is in
If you have “project specific settings”, it is in the “
.settings” directory of your project.That latter option (project specific settings) makes it easier for you to version it in your source control tool, as part of the other project files you would want to get back when doing a checkout of a new version of your project somewhere else.
See “Do you keep your project files under version control?” for more.