I have maybe dump question but it can’t get it off my mind. I’m starting to learn SWT and wonder why it’s recommended to use SWT like imported project in Eclipse as described in eclipse wiki. Isn’t it better to reference SWT like normal library and link a jar file in to your project?
Thanks
The recommendation is to make it easier for the user to quickly configure an SWT library reference correctly with all the bells and whistles. If you take a look at the SWT distro, you will see a .classpath file that tells the SWT java project what is a library, where to find its source code and javadoc. Here is an exerpt:
You can certainly do the equivalent reference straight from your own project.