0

I'm a .Net guy and used to csproj/vbproj files being the central repository for all folders/files in a .Net project.

What's the equivalent in Java explorer in Eclipse IDE? Where does it store the folders/resources and their physical paths etc?

Mrchief
  • 75,126
  • 20
  • 142
  • 189

1 Answers1

4

There are a few files involved. .project and .classpath cover the main important features, and the .settings directory includes project-specific settings (e.g. different compiler warning levels etc).

Note that unlike Visual Studio solutions, Eclipse doesn't specify each and every file to compile: it assumes that if there's a .java file underneath a source folder, it should be compiled. This makes life a lot easier in terms of diffs to project files... once set up, the project files in Eclipse rarely change, whereas they change every time someone adds or removes a file in Visual Studio :(

Jon Skeet
  • 1,421,763
  • 867
  • 9,128
  • 9,194