Reputation: 5379
I am looking into using the SWT Win32 Extension. I downloaded the extension jar files, and the example code. However, I couldn't find how to run the example. When I run the application with their jnlp file, it runs. When I looked into the file, I saw that they specify their main class as org.sf.feeling.swt.win32.extension.example.Example
, but this class is not part of the sample code (although almost everything else is, including the "about" dialog.
So what I'm looking for is either:
UPDATE:
Yay, it works. Thanks, @TrueSoft!
But just to clear a few points:
-Djava.library.path="{containing folder path}"
Upvotes: 3
Views: 1219
Reputation: 8796
You have the sources both in the file org.sf.feeling.swt.win32.extension.example.zip and in org.sf.feeling.swt.win32.extension.zip (in /src directory).
To run the examples, you must add a user library with the file org.sf.feeling.swt.win32.extension.jar
and include the file swt-extension-win32.dll
in your project folder.
Upvotes: 1