A: 

To my knowledge, no: those eclipse products are always distributed per platform

VonC
+6  A: 

No, there isn't, and you can't make one either out of the standalone SWT distributions. That's because each os/windowing system/architecture combination has its own implementation of each of the SWT classes. For example, if your code refers to org.eclipse.swt.widgets.Button, the JVM has no way of knowing if you want the win32, Mac/Carbon or Mac/Cocoa implementation of the class.

You could conceivably do this yourself by writing a loader class that figured out the platform, architecture and windowing system and then loaded the right JAR. Or, architect your application using equinox, and it can load the right SWT plugin for you automatically. But you can't do it with any of the unmodified SWT distributions.

Scott K.
That is a much more detailed answer than mine ;) +1
VonC
I was afraid it would come to class loading black magic. ;) Thanks for the tip.
Adam Paynter
Here's a code snippet that might help: http://stackoverflow.com/questions/2706222/create-cross-platform-java-swt-application/3204032#3204032
Matías