- I just installed Eclipse. 
- The Eclipse created the "workspace" folder. 
- In this folder I created a "game" sub-folder (for my class called "game"). I have already .java files for that project (I wrote them in a text editor before I started to use Eclipse). 
- I put all my .java file into the "game" directory. 
- In Eclipse I created a "New Java Project" from existing code. 
What wanders me is that the Eclipse create a "src" sub-folder into my "game" folder. As far as I understand "src" stands for "source". But my source (.java files) is in the "game" (by the construction).
Am I doing something wrong?
ADDED:
I still cannot solve the problem. The whole day I am trying to start programming in Eclipse using existing code. It's incredibly complicated.
- Should I "Import Existing Project into Workspace" or should I "Create New Java Project from Existing code". 
- Should I create "src" folder by hands and put in "workspace"? 
- Should I create folders for packages or Eclipse will do it by itself? 
- Should I copy my .java files to the package directory before or after I create a project in Eclipse? 


