Reputation: 11
I'm trying to import this package
import org.eclipse.swt.browser.*;
So that I can use Eclipse's browser widget, but I can't find out where to download the package, and I don't know how to install it either.
Upvotes: 1
Views: 18490
Reputation: 7953
You can find download links and installation instructions at http://www.eclipse.org/swt/
Upvotes: 1
Reputation: 24088
See this page on how to import the SWT
library in your workspace.
Generally, you'll find packages as .jar
files on the developer's website. The Eclipse tutorial has a section on how to add external jars to your buildpath.
Upvotes: 2