Apologies if this has been asked before - if it has, I'm obviously searching for the wrong thing. It's not the first time I've been stumped by java, eclipse and how they find source files.
I have a folder of java sources and I wish to copy them in to the 'src/com' folder and have this 'just work'. If I copy the files directly, eclipse and java fail to recognise them so I assume that somewhere there's a file that tells the IDE that there's a folder of files in there that's included in the project. I'd like to know how to do this via config files and via the IDE UI.
Unfortunately, the two obvious files (.project and .classpath) don't seem to reference the existing directories at all (.classpath contains a line
<classpathentry kind="src" path="src"/>
that I'd assume would auto-scan that directory for files but it doesn't appear to)
Finally, are .classpath and .project java concepts or eclipse concepts?
Thank you for your time.